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

:root {
  --font-primary: "Plus Jakarta Sans", sans-serif;
  --font-secondary: "Geist", sans-serif;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
}

/* Webkit (Chrome, Safari) */
::-webkit-scrollbar {
  width: 6px; /* Vertical scrollbar width */
  height: 6px; /* Horizontal scrollbar height */
}

::-webkit-scrollbar-thumb {
  background: #888; /* Scrollbar color */
  border-radius: 3px; /* Rounded corners */
}

::-webkit-scrollbar-thumb:hover {
  background: #555; /* Darker on hover */
}

/* Firefox */
* {
  scrollbar-width: thin; /* Thin scrollbar */
  scrollbar-color: #333333 #000; /* Thumb and track color */
}

.sec-1 {
  min-height: 100vh;
  background: #0b0b0b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem;
}

.sec-1 .sec-1-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
  color: #fff;
}

/* Logo */
.sec-1 .sec-1-logo img {
  height: 90px;
  margin-bottom: 20px;
  background-color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  margin-left: auto;
  margin-right: auto;
}

/* Badge */
.sec-1 .sec-1-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 59, 99, 0.15);
  color: #ff3b63;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 59, 99, 0.3);
}

/* Glowing dot */
.sec-1 .sec-1-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b63;
  animation: glowPulse 1.5s infinite ease-in-out;
}

/* Animation */
@keyframes glowPulse {
  0% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

/* Title */
.sec-1 .sec-1-title {
  font-size: 6rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 24px;
  font-family: var(--font-primary);
  color: #fff;
}

.sec-1 .sec-1-title .highlight {
  color: #ff3b63;
}

/* Description */
.sec-1 .sec-1-desc {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 16px;
  color: #bdbdbd;
  line-height: 1.6;
}

/* Buttons */
.sec-1 .sec-1-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.sec-1 .sec-1-btn {
  padding: 20px 40px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.sec-1 .btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sec-1 .sec-1-btn-outline .btn-icon {
  color: #fff;
}

.sec-1 .sec-1-btn-primary .btn-icon {
  color: #fff;
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}

.sec-1 .sec-1-btn-primary {
  background: #ff3b63;
  color: #fff;
}

.sec-1 .sec-1-btn-primary:hover {
  transform: translateY(-2px);
  background: #ff4f73;
  box-shadow:
    0 8px 30px rgba(255, 50, 85, 0.7),
    0 0 0 3px rgba(255, 59, 99, 0.15);
}

/* icon slight move */
.sec-1 .sec-1-btn-primary:hover .btn-icon {
  transform: scale(1.05);
}

.sec-1 .sec-1-btn-outline {
  border: 1px solid #333;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.sec-1 .sec-1-btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.6);
}

.sec-1 .sec-1-btn-outline:hover .btn-icon {
  transform: rotate(-6deg) scale(1.05);
}

.sec-1 .sec-1-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Rating */
.sec-1 .sec-1-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #bdbdbd;
}

.sec-1 .sec-1-avatars {
  display: flex;
}

.sec-1 .sec-1-avatars img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #000;
  margin-left: -10px;
}

.sec-1 .sec-1-avatars img:first-child {
  margin-left: 0;
}

.sec-1 .rating-sec {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.sec-1 .rating-sec .rating {
  display: flex;
  font-size: 14px;
}

.sec-1 .rating-sec .rating svg {
  width: 16px;
  height: 16px;
  fill: #f5c25b;
}

.sec-1 .rating-sec .rating-details {
  font-size: 12px;
}

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

/* Tablet */
@media (max-width: 992px) {
  .sec-1 .sec-1-title {
    font-size: 4.5rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .sec-1 {
    padding: 4rem 1rem;
  }

  /* Logo */
  .sec-1 .sec-1-logo img {
    height: 70px;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
  }

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

  .sec-1 .sec-1-actions {
    flex-direction: column;
  }

  .sec-1 .sec-1-btn {
    width: 100%;
  }
}

/* section 2 */

.sec-2 {
  background: #000000;
  padding: 6rem 1rem;
  color: #fff;
  border-top: 1px solid #ffffff1a;
}

.sec-2 .sec-2-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Badge */
.sec-2 .sec-2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff3b63;
  border: 1px solid rgba(255, 59, 99, 0.35);
  background: rgba(255, 59, 99, 0.12);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Title */
.sec-2 .sec-2-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-primary);
  color: #fff;
}

.sec-2 .sec-2-title .highlight-text {
  color: #ff3b63;
}

/* Description */
.sec-2 .sec-2-desc {
  max-width: 800px;
  margin: 0 auto 64px;
  font-size: 18px;
  color: rgb(255 255 255 / 0.7);
  line-height: 1.75;
}

/* Cards Grid */
.sec-2 .sec-2-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.sec-2 .sec-2-card {
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sec-2 .sec-2-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Level Number */
.sec-2 .sec-2-level {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.sec-2 .sec-2-level-1 {
  background: #f5386133;
  color: #ff3b63;
  border: 1px solid #f538614d;
}

.sec-2 .sec-2-level-2 {
  background: #f538614d;
  color: #ff3b63;
  border: 1px solid #f5386180;
}

.sec-2 .sec-2-level-3 {
  background: #258bd133;
  color: #4da3ff;
  border: 1px solid #258bd14d;
}

/* Popular Card */
.sec-2 .sec-2-card-popular {
  border: 3px solid #f5386166;
  box-shadow:
    0 0 #0000,
    0 0 #0000,
    0 0 #0000,
    0 0 #0000,
    0 0 40px rgba(245, 56, 97, 0.2);
  background: linear-gradient(to bottom right, #f538611a, transparent);
}

.sec-2 .sec-2-card-popular:hover {
  border: 3px solid #f5386194;
  transition: all 0.4s ease;
}

.sec-2 .sec-2-popular {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #ff3b63;
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* Card Text */
.sec-2 .sec-2-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-primary);
  font-weight: 600;
  color: #fff;
}

.sec-2 .sec-2-card-desc {
  font-size: 0.875rem;
  line-height: 1.25;
  color: #bdbdbd;
  margin-bottom: 20px;
}

/* List */
.sec-2 .sec-2-card ul {
  list-style: none;
  margin-bottom: 32px;
}

/* SVG list */
.sec-2 .sec-2-list {
  list-style: none;
  margin-bottom: 32px;
}

.sec-2 .sec-2-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #d1d1d1;
  line-height: 1.5;
}

.sec-2 .sec-2-card-popular li {
  color: #ffffffe6;
}

/* SVG icon */
.sec-2 .sec-2-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke-width: 2.5;
  fill: none;
}

.sec-2 .sec-2-card-popular .sec-2-list svg {
  stroke: #ff3b63;
}

.sec-2 .sec-2-card-red .sec-2-list svg {
  stroke: #ff3b63;
}

.sec-2 .sec-2-card-blue .sec-2-list svg {
  stroke: #258bd1;
}

/* Duration */
.sec-2 .sec-2-duration {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  font-size: 14px;
  color: #bdbdbd;
}

.sec-2 .sec-2-duration strong {
  color: #fff;
}

/* ==================================
   Cursor-follow glow hover (sec-2)
   ================================== */

.sec-2 .sec-2-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  overflow: hidden;
}

/* glow layer */
.sec-2 .sec-2-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    1000px circle at var(--mouse-x) var(--mouse-y),
    rgb(255 255 255 / 6%),
    #00000000 30%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* activate glow */
.sec-2 .sec-2-card:hover::before {
  opacity: 1;
}

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

@media (max-width: 992px) {
  .sec-2 .sec-2-cards {
    grid-template-columns: 1fr 1fr;
  }

  .sec-2 .sec-2-title {
    font-size: 40px;
  }
}

@media (max-width: 750px) {
  .sec-2 .sec-2-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .sec-2 {
    padding: 4rem 1rem;
  }

  .sec-2 .sec-2-title {
    font-size: 32px;
  }

  .sec-2 .sec-2-desc {
    margin-bottom: 48px;
  }
}

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

.sec-3 {
  background: #000000;
  padding: 6rem 1rem;
  color: #fff;
  border-top: 1px solid #ffffff1a;
}

.sec-3 .sec-3-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Badge */
.sec-3 .sec-3-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f5c25b;
  background: rgba(245, 194, 91, 0.12);
  border: 1px solid rgba(245, 194, 91, 0.3);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}

.sec-3 .sec-3-badge svg {
  width: 14px;
  height: 14px;
}

/* Title */
.sec-3 .sec-3-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  font-family: var(--font-primary);
  color: #fff;
}

.sec-3 .sec-3-title .highlight-text {
  color: #ff3b63;
}

/* Description */
.sec-3 .sec-3-desc {
  max-width: 720px;
  margin: 0 auto 64px;
  font-size: 18px;
  color: rgb(255 255 255 / 0.7);
}

/* Cards */
.sec-3 .sec-3-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sec-3 .sec-3-card {
  position: relative;
  padding: 32px;
  border-radius: 20px;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  overflow: hidden;
}

/* glow effect (same as sec-2) */
.sec-3 .sec-3-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.sec-3 .sec-3-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.1),
    transparent 30%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sec-3 .sec-3-card:hover::before {
  opacity: 1;
}

/* Quote */
.sec-3 .sec-3-quote {
  color: #ff3b63;
  font-size: 28px;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}

/* Text */
.sec-3 .sec-3-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #d1d1d1;
  margin-bottom: 1.5rem;
}

/* User */
.sec-3 .sec-3-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.sec-3 .sec-3-user img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

.sec-3 .sec-3-user .user-details strong {
  display: flex;
  flex-direction: column;
}

.sec-3 .sec-3-user strong {
  font-size: 1rem;
  line-height: 1.5rem;
}

.sec-3 .sec-3-user span {
  font-size: 0.85rem;
  line-height: 1.75;
  color: #fff9;
}

/* Footer */
.sec-3 .sec-3-footer {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: #bdbdbd;
  gap: 0.6rem;
}

.sec-3 .sec-3-stars {
  display: flex;
  gap: 4px;
}

.sec-3 .sec-3-stars svg {
  width: 16px;
  height: 16px;
  fill: #f5c25b;
}

/* Responsive */
@media (max-width: 992px) {
  .sec-3 .sec-3-cards {
    grid-template-columns: 1fr;
  }

  .sec-3 .sec-3-title {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .sec-3 .sec-3-title {
    font-size: 32px;
  }

  .sec-3 .sec-3-card {
    padding: 24px;
  }

  .sec-3 .sec-3-text {
    font-size: 0.875rem;
  }

  .sec-3 {
    padding: 4rem 1rem;
  }
}

/* ===========================
   SECTION 4
=========================== */

.sec-4 {
  background: #000000;
  padding: 6rem 1rem;
  color: #fff;
  border-top: 1px solid #ffffff1a;
}

.sec-4 .sec-4-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Badge */
.sec-4 .sec-4-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #258bd1;
  background: #258bd11a;
  border: 1px solid #258bd133;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Title */
.sec-4 .sec-4-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
  color: #fff;
}

.sec-4 .sec-4-title .highlight-text {
  color: #ff3b63;
}

/* Description */
.sec-4 .sec-4-desc {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #ffffffb3;
  margin-bottom: 2rem;
}

/* Points */
.sec-4 .sec-4-point {
  display: flex;
  gap: 28px;
  padding: 1rem;
  border-radius: 0.75rem;
}

.sec-4 .sec-4-point:hover {
  background-color: #ffffff0d;
}

.sec-4 .sec-4-point {
  display: flex;
  gap: 16px;
}

.sec-4 .sec-4-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.sec-4 .sec-4-icon svg {
  width: 22px;
  height: 22px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sec-4 .sec-4-icon.red {
  background: #f5386133;
  color: #ff3b63;
  border: 1px solid #f538614d;
}

.sec-4 .sec-4-icon.yellow {
  background: #f59e0b33;
  color: #f5c25b;
  border: 1px solid #f59e0b4d;
}

.sec-4 .sec-4-icon.blue {
  background: rgba(77, 163, 255, 0.2);
  color: #4da3ff;
  border: 1px solid #258bd133;
}

.sec-4 .sec-4-point {
  margin-bottom: 2rem;
}

.sec-4 .sec-4-point h4 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 600;
}

.sec-4 .sec-4-point p {
  font-size: 14px;
  color: #ffffff99;
  line-height: 1.6;
}

/* Image */
.sec-4 .sec-4-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.sec-4 .sec-4-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay card */
.sec-4 .sec-4-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec-4 .sec-4-overlay span {
  display: block;
  font-size: 12px;
  color: #bdbdbd;
}

.sec-4 .sec-4-seats {
  text-align: end;
}

.sec-4 .sec-4-seats strong {
  font-size: 24px;
  color: #ff3b63;
}

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

@media (max-width: 992px) {
  .sec-4 .sec-4-container {
    grid-template-columns: 1fr;
  }

  .sec-4 .sec-4-title {
    font-size: 40px;
  }

  .sec-4 .sec-4-image-wrap {
    order: -1;
  }
}

@media (max-width: 600px) {
  .sec-4 {
    padding: 4rem 1rem;
  }

  .sec-4 .sec-4-desc {
    font-size: 1em;
    line-height: 1.5rem;
  }

  .sec-4 .sec-4-point {
    margin-bottom: 1rem;
    padding: 0.75rem;
    gap: 10px;
  }

  .sec-4 .sec-4-title {
    font-size: 32px;
  }

  .sec-4 .sec-4-overlay {
    gap: 10px;
    left: 10px;
    right: 10px;
    padding: 16px 12p;
  }

  .sec-4 .sec-4-overlay strong {
    font-size: 12px;
  }

  .sec-4 .sec-4-overlay .sec-4-seats strong {
    font-size: 16px;
  }

  .sec-4 .sec-4-overlay span {
    font-size: 12px;
  }
}

/* ===========================
   SECTION 5 (SCOPED)
=========================== */

.sec-5 {
  background: #000000;
  padding: 6rem 1rem;
  color: #fff;
  border-top: 1px solid #ffffff1a;
}

.sec-5 .sec-5-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Badge */
.sec-5 .sec-5-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 59, 99, 0.15);
  border: 1px solid rgba(255, 59, 99, 0.35);
  color: #ff3b63;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}

.sec-5 .sec-5-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Title */
.sec-5 .sec-5-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  font-family: var(--font-primary);
  color: #fff;
}

.sec-5 .sec-5-title .highlight-text {
  color: #ff3b63;
}

/* Description */
.sec-5 .sec-5-desc {
  max-width: 720px;
  margin: 0 auto 64px;
  color: rgb(255 255 255 / 0.7);
  font-size: 18px;
  line-height: 1.6;
}

/* Table Wrapper */
.sec-5 .sec-5-table {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
}

/* Rows */
.sec-5 .sec-5-row {
  display: grid;
  background-color: #0d0d0d;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 22px 24px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
}

.sec-5 .sec-5-row:hover {
  background-color: #ffffff0d;
}

.sec-5 .sec-5-row:last-child {
  border-bottom: none;
}

/* Header Row */
.sec-5 .sec-5-head {
  background: #0d0d0d;
  font-weight: 600;
  color: #fff;
}

.sec-5 .sec-5-head .highlight {
  padding: 0.5rem 1rem;
  background-color: #f5386133;
  border: 1px solid #f538614d;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  color: #ff3b63;
  font-weight: 600;
  font-size: 0.8rem;
  margin: 0 auto;
}

/* Highlight Column */
.sec-5 .highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ff3b63;
  font-weight: 600;
  margin: 0 auto;
}

/* Muted Column */
.sec-5 .muted {
  color: #ffffff66;
}

/* SVG Check Icon */
.sec-5 .check {
  width: 18px;
  height: 18px;
  stroke: #ff3b63;
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

/* ===========================
   RESPONSIVE (SCOPED)
=========================== */

@media (max-width: 992px) {
  .sec-5 .sec-5-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sec-5 .sec-5-row {
    min-width: 600px;
    font-size: 0.875rem;
    padding: 1rem;
  }
}

@media (max-width: 600px) {
  .sec-5 {
    padding: 4rem 1rem;
  }

  .sec-5 .sec-5-row {
    min-width: 400px;
    font-size: 0.75rem;
    line-height: 1rem;
  }

  .sec-5 .sec-5-title {
    font-size: 32px;
  }

  .sec-5 .sec-5-desc {
    font-size: 16px;
  }
}

/* ===========================
   SECTION 6
=========================== */

.sec-6 {
  background: #000000;
  padding: 6rem 1rem;
  color: #fff;
  text-align: center;
  border-top: 1px solid #ffffff1a;
}

.sec-6 .sec-6-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Title */
.sec-6 .sec-6-title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  font-family: var(--font-primary);
  color: #fff;
}

.sec-6 .sec-6-title .highlight-text {
  color: #ff3b63;
}

/* Description */
.sec-6 .sec-6-desc {
  font-size: 18px;
  color: #ffffffb3;
  margin-bottom: 40px;
}

/* Actions */
.sec-6 .sec-6-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.sec-6 .sec-6-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  border-radius: 999px;
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Primary */
.sec-6 .sec-6-btn-primary {
  background: #ff3b63;
  color: #fff;
}

.sec-6 .sec-6-btn-primary:hover {
  transform: translateY(-2px);
  background: #ff4f73;
  box-shadow: 0 10px 30px rgba(255, 59, 99, 0.6);
}

/* Outline */
.sec-6 .sec-6-btn-outline {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.sec-6 .sec-6-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* SVG icons */
.sec-6 .sec-6-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Points */
.sec-6 .sec-6-points {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #ffffff99;
}

.sec-6 .sec-6-points span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sec-6 .sec-6-points svg {
  width: 18px;
  height: 18px;
  stroke: #ff3b63;
  stroke-width: 2.5;
  fill: none;
}

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

@media (max-width: 992px) {
  .sec-6 .sec-6-title {
    font-size: 44px;
  }
}

@media (max-width: 600px) {
  .sec-6 {
    padding: 4rem 1rem;
  }

  .sec-6 .sec-6-title {
    font-size: 32px;
  }

  .sec-6 .sec-6-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
  }
}

/* ===========================
   FOOTER
=========================== */

.sec-footer {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 1rem;
  color: #ffffff99;
  font-size: 14px;
}

.sec-footer .sec-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

/* Logo */
.sec-footer .sec-footer-logo img {
  height: 60px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}

/* Copyright */
.sec-footer .sec-footer-copy {
  color: #ffffff80;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 10px;
	text-align: center;
}

/* Links */
.sec-footer .sec-footer-links {
  display: flex;
  gap: 24px;
}

.sec-footer .sec-footer-links a {
  color: #ffffff80;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sec-footer .sec-footer-links a:hover {
  color: #ff3b63;
}

.sec-footer .sec-footer-contact-info {
	display: flex;
    flex-direction: column;
    align-items: end;
}

.sec-footer .sec-footer-contact-info a {
  color: #ffffff80;
  text-decoration: none;
  transition: color 0.2s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
}

.sec-footer .sec-footer-contact-info a:hover {
  color: #ff3b63;
}	

.floating-whatsapp-icon{
	display: block; 
	position: fixed; 
	bottom: 20px; 
	right: 20px;
    z-index: 9999;
}

.floating-whatsapp-icon svg{
	transition: all .3s ease-in-out;
}

.floating-whatsapp-icon svg:hover{
	transform: scale(1.1)
}
	
/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 800px) {
  .sec-footer .sec-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .sec-footer .sec-footer-links {
    justify-content: center;
  }
	
  .sec-footer .sec-footer-logo img{
	margin: auto;
  }
	
	.sec-footer .sec-footer-contact-info {
		align-items: center;
		margin-bottom: 8px;
	}
}

/* animation on scroll */
/* ===============================
   SCROLL REVEAL (LAYOUT)
================================ */
.reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Direction variants */
.reveal-left {
  transform: translateX(-56px) scale(0.97);
}

.reveal-right {
  transform: translateX(56px) scale(0.97);
}

.reveal-scale {
  transform: scale(0.92);
}

.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
  transform: none;
}

/* ===============================
   TEXT WORD REVEAL
================================ */
.text-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.text-word.active {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .text-word {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
