/* CSS Variables */
:root {
  --bg-color: #e8ecf1;
  --primary: #4A90D9;
  --primary-hover: #3b7cbd;
  --text-dark: #2d3748;
  --text-light: #718096;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Neumorphic Shadows */
  --shadow-out: 8px 8px 16px #c8ccd1, -8px -8px 16px #ffffff;
  --shadow-out-hover: 12px 12px 20px #c8ccd1, -12px -12px 20px #ffffff;
  --shadow-in: inset 6px 6px 12px #c8ccd1, inset -6px -6px 12px #ffffff;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 4rem 3rem;
  /* biar tetap ada nafas dikit */
}

/* Typography Utility */
.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  box-shadow: 4px 4px 10px rgba(74, 144, 217, 0.4), -4px -4px 10px #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-dark);
  box-shadow: var(--shadow-out);
}

.btn-ghost:hover {
  box-shadow: var(--shadow-in);
  color: var(--primary);
}

.btn-green {
  background-color: #25D366;
  color: #fff;
  box-shadow: 4px 4px 10px rgba(37, 211, 102, 0.4), -4px -4px 10px #ffffff;
}

.btn-green:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

/* Utility Classes */
.neumorphic {
  background: var(--bg-color);
  box-shadow: var(--shadow-out);
  border-radius: 24px;
}

.inset-neumorphic {
  background: var(--bg-color);
  box-shadow: var(--shadow-in);
  border-radius: 50%;
}

.icon-primary {
  color: var(--primary);
  width: 32px;
  height: 32px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ----------------------------------
   NAVBAR SECTION
----------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(232, 236, 241, 0.85);
  /* Matches --bg-color slightly transparent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Logo Styles */
.navbar-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-heading);
  line-height: 1;
}

.logo-top {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-super {
  color: #152d6a;
  /* Dark Blue */
}

.logo-clean {
  color: #385ad2;
  /* Blue */
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 0.05em;
}

.logo-clean .star-top {
  position: absolute;
  top: -6px;
  left: -5px;
  width: 13px;
  height: 13px;
  color: #152d6a;
  fill: #152d6a;
  stroke: none;
}

.logo-clean .star-bottom {
  position: absolute;
  bottom: -2px;
  left: 0px;
  width: 6px;
  height: 6px;
  color: #152d6a;
  fill: #152d6a;
  stroke: none;
}

.logo-bottom {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0px;
  margin-left: 1.8rem;
  /* Indent to align with CLEAN */
}

.speed-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 24px;
  align-items: flex-end;
}

.speed-lines span {
  height: 1.5px;
  background-color: #152d6a;
  border-radius: 2px;
}

.logo-laundry {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 500;
  color: #152d6a;
  letter-spacing: 0.02em;
}

/* Navbar Menu Styles */
.navbar-menu ul {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.navbar-menu li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.navbar-menu a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.navbar-menu li.active a,
.navbar-menu li:hover a {
  color: var(--text-dark);
}

.navbar-menu .dot {
  width: 6px;
  height: 6px;
  background-color: transparent;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.navbar-menu li.active .dot {
  background-color: #385ad2;
  /* blue dot */
}

.navbar-menu li:hover .dot {
  background-color: rgba(56, 90, 210, 0.5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-menu-btn i {
  width: 28px;
  height: 28px;
}

@media (max-width: 992px) {
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 110;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: rgba(248, 250, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 30px rgba(21, 45, 106, 0.1);
    padding: 7rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 105;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
  }

  .navbar-menu li {
    align-items: flex-start;
    width: 100%;
  }

  .navbar-menu a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #152d6a;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(21, 45, 106, 0.05);
    display: block;
  }

  .navbar-menu li.active a {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }

  .navbar-menu .dot {
    display: none !important;
  }
}

/* Mobile navbar slim override */
@media (max-width: 992px) {
  .navbar-container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  /* Override the .container's large vertical padding inside navbar only */
  .navbar .container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .logo-top {
    font-size: 1.1rem;
  }

  .logo-laundry {
    font-size: 0.65rem;
  }

  .mobile-menu-btn i {
    width: 22px;
    height: 22px;
  }
}


/* ----------------------------------
   HERO SECTION
----------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  padding-top: 8rem;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: var(--bg-color);
  box-shadow: var(--shadow-out);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  width: fit-content;
}

.hero-content h1 {
  font-size: 4.5rem;
  color: var(--text-dark);
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.5rem;
  color: var(--text-light);
  max-width: 90%;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ----------------------------------
   SERVICE HERO — Bento Symmetrical Layout
----------------------------------- */
.service-hero {
  position: relative;
  background: var(--bg-color);
  padding: 100px 0 40px;
  overflow: hidden;
}

.service-bento-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  gap: 30px;
}

/* Common Panel Styles */
.bento-hero-panel {
  flex: 1;
  background: var(--bg-color);
  border-radius: 40px;
  padding: 4rem;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-out);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.panel-left {
  text-align: left;
}

.panel-right {
  text-align: right;
  align-items: flex-end;
}

.panel-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.panel-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.panel-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 450px;
}

/* Center Floating Shirt */
.center-shirt-wrap {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.center-shirt-wrap>div {
  width: 100%;
  display: flex;
  justify-content: center;
}

.center-shirt-img {
  width: 100%;
  max-width: none;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.3));
}

@keyframes shirtFloatMain {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* Video inside panel (optional but keeps user's previous preference) */
.panel-video-box {
  width: 100%;
  height: 180px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.panel-right .panel-video-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  z-index: 0;
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.15) 0%, rgba(74, 144, 217, 0) 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.panel-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .service-bento-container {
    flex-direction: column;
    gap: 40px;
  }

  .center-shirt-wrap {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin: -60px 0;
    width: 300px;
    height: 300px;
  }

  .bento-hero-panel {
    min-height: auto;
    width: 100%;
  }
}

/* Tracker + floating rings kept for other uses */
.tracker-widget {
  width: 100%;
  max-width: 380px;
  background: var(--bg-color);
  border-radius: 32px;
  padding: 2.5rem 2.2rem;
  box-shadow: 12px 12px 30px #c8ccd1, -12px -12px 30px #ffffff;
  position: relative;
  z-index: 2;
}

.tracker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.tracker-header h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.tracker-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 0 0 1.8rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: #d1d5db;
  z-index: 0;
}

.timeline::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 50%;
  width: 2px;
  background: var(--primary);
  z-index: 0;
}

.tl-step {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.tl-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-color);
  box-shadow: 4px 4px 10px #c8ccd1, -4px -4px 10px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-light);
}

.tl-step.active .tl-icon {
  box-shadow: inset 3px 3px 8px #c8ccd1, inset -3px -3px 8px #ffffff;
  color: var(--primary);
}

.tl-step.done .tl-icon {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(74, 144, 217, 0.4);
}

.tl-icon i {
  width: 18px;
  height: 18px;
}

.tl-content h4 {
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text-dark);
  margin-bottom: 2px;
}

.tl-content p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
}

.tracker-eta {
  margin-top: 1.8rem;
  padding: 1rem 1.2rem;
  background: var(--bg-color);
  border-radius: 16px;
  box-shadow: inset 4px 4px 10px #c8ccd1, inset -4px -4px 10px #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tracker-eta-label {
  font-size: 0.78rem;
  color: var(--text-light);
}

.tracker-eta-time {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.float-item {
  position: absolute;
  z-index: 3;
}

.float-item-1 {
  top: 8%;
  right: 0%;
  animation: floaty 6s ease-in-out infinite;
}

.float-item-2 {
  bottom: 10%;
  left: -2%;
  animation: floaty 8s ease-in-out infinite reverse;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes shirtFloat {

  0%,
  100% {
    transform: translate(-50%, -55%) translateY(0);
  }

  50% {
    transform: translate(-50%, -55%) translateY(-16px);
  }
}




.service-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  min-height: 580px;
}

/* ── LEFT: Floating image card ────────────────── */
.service-hero-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  /* Soft cool gradient exactly like the reference */
  background: linear-gradient(145deg, #dce8f0 0%, #c8dce8 40%, #b8cfe0 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  box-shadow: 12px 12px 32px #c3c8cf, -12px -12px 32px #ffffff;
  min-height: 520px;
}

/* Top eyebrow text */
.service-hero-card .card-eyebrow {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(30, 50, 80, 0.7);
  max-width: 200px;
  line-height: 1.4;
}

/* The floating shirt image — centred in the card */
.service-hero-shirt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 75%;
  max-width: 340px;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.12));
}

@keyframes shirtFloat {

  0%,
  100% {
    transform: translate(-50%, -55%) translateY(0);
  }

  50% {
    transform: translate(-50%, -55%) translateY(-16px);
  }
}

/* Bottom section: heading + avatars */
.service-card-bottom {
  position: relative;
  z-index: 2;
}

.service-card-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #1a2f4a;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-family: var(--font-heading);
  margin-bottom: 1.2rem;
}

.service-card-heading span {
  color: var(--primary);
}

/* Social proof avatars */
.avatar-group {
  display: flex;
  align-items: center;
  gap: 0;
}

.avatar-group img,
.avatar-group .avatar-fallback {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid #dce8f0;
  object-fit: cover;
  margin-left: -10px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-group .avatar-fallback:first-child {
  margin-left: 0;
}

.avatar-group .avatar-count {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid #dce8f0;
  background: #1a2f4a;
  color: white;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}

/* ── RIGHT: Tracker + floating rings ─────────── */
.service-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tracker Widget (neumorphic card) */
.tracker-widget {
  width: 100%;
  max-width: 380px;
  background: var(--bg-color);
  border-radius: 32px;
  padding: 2.5rem 2.2rem;
  box-shadow: 12px 12px 30px #c8ccd1, -12px -12px 30px #ffffff;
  position: relative;
  z-index: 2;
}

.tracker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.tracker-header h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.tracker-header .badge {
  font-size: 10px;
  padding: 4px 10px;
  margin: 0;
}

/* Divider between widget header & steps */
.tracker-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 0 0 1.8rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

/* Connecting line */
.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: #d1d5db;
  z-index: 0;
}

/* Active progress line */
.timeline::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 50%;
  width: 2px;
  background: var(--primary);
  z-index: 0;
}

.tl-step {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.tl-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-color);
  box-shadow: 4px 4px 10px #c8ccd1, -4px -4px 10px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-light);
}

.tl-step.active .tl-icon {
  box-shadow: inset 3px 3px 8px #c8ccd1, inset -3px -3px 8px #ffffff;
  color: var(--primary);
}

.tl-step.done .tl-icon {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(74, 144, 217, 0.4);
}

.tl-icon i {
  width: 18px;
  height: 18px;
}

.tl-content h4 {
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text-dark);
  margin-bottom: 2px;
}

.tl-content p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
}

/* ETA pill below tracker */
.tracker-eta {
  margin-top: 1.8rem;
  padding: 1rem 1.2rem;
  background: var(--bg-color);
  border-radius: 16px;
  box-shadow: inset 4px 4px 10px #c8ccd1, inset -4px -4px 10px #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tracker-eta-label {
  font-size: 0.78rem;
  color: var(--text-light);
}

.tracker-eta-time {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

/* Floating ring elements around the tracker */
.float-item {
  position: absolute;
  z-index: 3;
}

.float-item-1 {
  top: 8%;
  right: 0%;
  animation: floaty 6s ease-in-out infinite;
}

.float-item-2 {
  bottom: 10%;
  left: -2%;
  animation: floaty 8s ease-in-out infinite reverse;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .service-hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-hero-card {
    min-height: 400px;
  }

  .service-hero-shirt {
    width: 55%;
  }
}


/* ----------------------------------
   REGULAR LAUNDRY SECTION
----------------------------------- */
.regular-laundry {
  padding: 120px 0; /* Tambah padding biar lebih megah */
  background: var(--bg-color);
  position: relative;
}

/* Ornaments */
.regular-decor-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.decor-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.1) 0%, rgba(74, 144, 217, 0) 70%);
  filter: blur(20px);
  animation: floaty 10s ease-in-out infinite;
}

.db-1 { width: 300px; height: 300px; top: -50px; left: -100px; animation-delay: 0s; }
.db-2 { width: 400px; height: 400px; bottom: -100px; right: -50px; animation-delay: -2s; }
.db-3 { width: 150px; height: 150px; top: 20%; right: 20%; animation-delay: -5s; opacity: 0.5; }

.decor-text-bg {
  position: absolute;
  font-size: 15vw;
  font-weight: 900;
  color: rgba(74, 144, 217, 0.07);
  bottom: 5%;
  left: 5%;
  line-height: 1;
  user-select: none;
}

.regular-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.regular-content {
  display: flex;
  flex-direction: column;
}

.regular-text-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.regular-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.regular-item-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.regular-item-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 0.5rem;
}

.regular-divider {
  width: 100%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(to right, rgba(74, 144, 217, 0.2), transparent);
}

.btn-price {
  background: var(--primary);
  color: white;
  padding: 0.85rem 1.8rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 4px 6px 15px rgba(74, 144, 217, 0.25);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.btn-price:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 6px 10px 20px rgba(74, 144, 217, 0.35);
  background: var(--primary-hover);
}

/* Clothing Grid */
.clothing-wrapper {
  width: 700px; /* Diperlebar dari 560px */
  height: 640px;
  position: relative;
  background: transparent;
  border-radius: 40px;
  overflow: hidden;
  margin-left: auto;
}

#clothingClip path {
  transform: scale(1.25, 1);
  transform-origin: 0 0;
}

.clip-svg {
  position: absolute;
  width: 0;
  height: 0;
}

.grid-clipper {
  position: absolute;
  inset: 0;
  clip-path: url(#clothingClip);
}

.clothing-grid-bento {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr; /* Kolom tengah dibuat lebih proporsional */
  grid-template-rows: 1fr 1.1fr 1.1fr;
  gap: 15px;
  padding: 10px;
}

.t-sleeve-l { grid-column: 1; grid-row: 1; }
.t-neck     { grid-column: 2; grid-row: 1; }
.t-sleeve-r { grid-column: 3; grid-row: 1; }
.t-body-m   { grid-column: 2; grid-row: 2; }
.t-body-b   { grid-column: 2; grid-row: 3; }

.clothing-tile {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(0.85) translateY(20px); /* Start slightly smaller for snap-in effect */
  border-radius: 15px;
  /* Shadow untuk tiap balok */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
  /* Animasi dibuat jauh lebih lambat (1.5s) dengan easing yang elegan */
  transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1), transform 1.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.3s ease;
}

/* Trigger animasi saat container visual menjadi visible */
.regular-visual.visible .clothing-tile {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Antrian animasi yang diperlambat (0.5s antar foto) */
.regular-visual.visible .clothing-tile:nth-child(1) { transition-delay: 0.2s; } 
.regular-visual.visible .clothing-tile:nth-child(2) { transition-delay: 0.7s; } 
.regular-visual.visible .clothing-tile:nth-child(3) { transition-delay: 1.2s; } 
.regular-visual.visible .clothing-tile:nth-child(4) { transition-delay: 1.7s; } 
.regular-visual.visible .clothing-tile:nth-child(5) { transition-delay: 2.2s; }

.clothing-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .04) 0px, rgba(255, 255, 255, .04) 1px, transparent 1px, transparent 6px);
  pointer-events: none;
}

.clothing-vignette {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: radial-gradient(ellipse 75% 88% at 50% 50%, transparent 40%, rgba(232, 236, 241, 0.2) 70%, var(--bg-color) 100%);
}

@media (max-width: 1200px) {
  .clothing-wrapper {
    width: 480px;
    height: 439px; /* Maintains 1.09375 ratio */
    transform: none; /* Remove outer scale hack */
  }
  #clothingClip path {
    transform: scale(0.8571, 0.6859); /* 480/700 * 1.25 = 0.8571; 439/640 = 0.6859 */
    transform-origin: 0 0;
  }
}

@media (max-width: 992px) {
  .regular-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .regular-visual {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .clothing-wrapper {
    width: 400px;
    height: 366px; /* Maintains 1.09375 ratio */
    margin: 0 auto;
    transform: none; /* Remove outer scale hack */
  }
  #clothingClip path {
    transform: scale(0.7143, 0.5719); /* 400/700 * 1.25 = 0.7143; 366/640 = 0.5719 */
    transform-origin: 0 0;
  }
}

@media (max-width: 580px) {
  .clothing-wrapper {
    width: 310px;
    height: 283px; /* Fits comfortably inside standard 360px mobile content area */
    margin: 0 auto;
    transform: none; /* Remove outer scale hack */
  }
  #clothingClip path {
    transform: scale(0.5536, 0.4422); /* 310/700 * 1.25 = 0.5536; 283/640 = 0.4422 */
    transform-origin: 0 0;
  }
  .btn-price {
    width: 100%;
    text-align: center;
  }
}

/* ----------------------------------
   ADVANTAGES SECTION
----------------------------------- */
.advantages.section {
  text-align: center;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.heading {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.heading span {
  color: var(--primary);
  position: relative;
}

.heading span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--primary);
  opacity: .3;
}

.divider {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--primary);
  margin: 16px auto 48px;
}

/* Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.advantage-card {
  background: var(--bg-color);
  border-radius: 24px;
  padding: 36px 24px 32px;
  text-align: center;
  cursor: default;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease;
  box-shadow: 8px 8px 18px #c8ccd1, -8px -8px 18px #ffffff;
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 12px 12px 28px #c8ccd1, -12px -12px 28px #ffffff;
}

/* Icon wrap */
.icon-wrap {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto 28px;
}

/* Canvas sits exactly over the wrap */
.ring-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
}

/* Neumorphic outer disc */
.ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--bg-color);
  box-shadow: 6px 6px 14px #c8ccd1, -6px -6px 14px #ffffff;
}

/* Inner recessed bowl */
.ring-inner {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--bg-color);
  box-shadow: inset 4px 4px 10px #c8ccd1, inset -4px -4px 10px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Badge */
.badge-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-color);
  box-shadow: 3px 3px 8px #c8ccd1, -2px -2px 6px #ffffff;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .04em;
  z-index: 4;
}

/* SVG icon */
.icon-svg {
  width: 36px;
  height: 36px;
  color: var(--text-light);
  transition: color .3s ease, transform .4s cubic-bezier(.34, 1.56, .64, 1);
}

.advantage-card:hover .icon-svg {
  transform: scale(1.12);
}

/* Text */
.card-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  transition: color .3s ease;
  font-family: var(--font-heading);
}

.card-desc {
  font-size: .78rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.7;
}

/* ----------------------------------
   BENTO SERVICES SECTION
----------------------------------- */
.bento-services.section {
  padding: 2rem 0 6rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.8rem;
  margin-top: 3rem;
  text-align: left;
}



.bento-card {
  position: relative;
  background: var(--bg-color);
  border-radius: 32px;
  padding: 2.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-out);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-dark); /* Restore dark text by default */
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Apply white text only when card has a background image */
.bento-card:has(.bento-bg) {
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-out-hover);
}

.bento-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  min-height: 520px;
  border: 4px solid #ffffff;
}

.bento-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s ease;
}

.bento-card:hover .bento-bg {
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, rgba(15, 23, 42, 0.05) 100%);
  z-index: 1;
}

.bento-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bento-card .bento-content {
  justify-content: flex-end;
}

.bento-badge {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  width: fit-content;
  margin-bottom: auto;
  /* Pushes the rest to the bottom */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bento-large h3 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: white;
}

.bento-large p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
  max-width: 95%;
}

.bento-medium {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  min-height: 250px;
}

.bento-small {
  min-height: 250px;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .bento-medium {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

.bento-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--text-dark); /* Default color */
  margin-bottom: 0.6rem;
  font-family: var(--font-heading);
}

.bento-card:has(.bento-bg) h3 {
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.bento-large h3 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
}

.bento-card p {
  font-size: 0.95rem;
  color: var(--text-light); /* Default color */
  margin-bottom: 1.2rem;
  line-height: 1.6;
  flex-grow: 1;
}

.bento-card:has(.bento-bg) p {
  color: rgba(255, 255, 255, 0.9);
}

.bento-large p {
  font-size: 1.1rem;
}

.bento-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--bg-color);
  box-shadow: var(--shadow-in);
}

.icon-wrap.bento-icon {
  margin: 0 0 1.5rem 0;
  /* Left align instead of center from original icon-wrap */
  box-shadow: none;
  /* override .bento-icon default since ring-outer has shadow */
  background: transparent;
}

.icon-wrap.bento-icon .ring-inner {
  width: 36px;
  height: 36px;
}

.icon-wrap.bento-icon .icon-svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.bento-icon i {
  width: 28px;
  height: 28px;
}

.bento-features {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.bento-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(74, 144, 217, 0.1);
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
}

.bento-features span i {
  width: 16px;
  height: 16px;
}

.bento-card.bento-large .bento-features span,
.bento-card:has(.bento-bg) .bento-features span {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ----------------------------------
   PROCESS SECTION — ACCORDION LAYOUT
----------------------------------- */
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Lock row height — this is the key to preventing layout shift below */
  grid-template-rows: 460px;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

.process-accordion {
  /* Must match grid-template-rows value */
  height: 460px;
  overflow: hidden;
}


.acc-item {
  border-bottom: 0.5px solid rgba(45, 55, 72, 0.12);
  padding: 1.25rem 0;
  cursor: pointer;
}

.acc-item:first-child {
  border-top: 0.5px solid rgba(45, 55, 72, 0.12);
}

.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.acc-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.acc-num {
  font-size: 13px;
  font-weight: 700;
  color: #a0aec0;
  min-width: 24px;
  transition: color 0.3s;
}

.acc-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s;
}

.acc-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #a0aec0;
  transition: transform 0.35s ease, color 0.3s;
}

.acc-item.active .acc-chevron {
  transform: rotate(180deg);
}

.acc-item.active .acc-num {
  color: var(--primary);
}

.acc-item.active .acc-title {
  color: var(--primary);
}

.acc-item.active .acc-chevron {
  color: var(--primary);
}

.acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  opacity: 0;
}

.acc-item.active .acc-body {
  max-height: 220px;
  opacity: 1;
}

.acc-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  padding: 0.75rem 0 0.25rem 2.25rem;
}

.acc-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.25rem 0 0.5rem 2.25rem;
}

.acc-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.acc-progress {
  margin: 0.5rem 2.25rem 0.25rem;
  height: 3px;
  border-radius: 2px;
  background: rgba(74, 144, 217, 0.12);
  overflow: hidden;
}

.acc-progress-bar {
  height: 100%;
  border-radius: 2px;
  background: var(--primary);
  width: 0%;
}

/* Visual Panel (right sticky column) */
.visual-panel {
  position: sticky;
  top: 100px;
  background: var(--bg-color);
  border-radius: 28px;
  box-shadow: var(--shadow-out);
  padding: 2.5rem 2rem;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.visual-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
  animation: slideIn 0.35s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.visual-slide.active {
  display: flex;
}

.vis-icon-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-out);
  position: relative;
}

.vis-icon-wrap svg {
  width: 48px;
  height: 48px;
}

.vis-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(74, 144, 217, 0.3);
  animation: spin-ring 12s linear infinite;
}

@keyframes spin-ring {
  to {
    transform: rotate(360deg);
  }
}

.vis-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.vis-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 85%;
}

.vis-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.visual-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visual-slide:hover img {
  transform: scale(1.05);
}

.vis-stat-row {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.vis-stat {
  background: var(--bg-color);
  border-radius: 14px;
  box-shadow: var(--shadow-out);
  padding: 0.7rem 1.1rem;
  text-align: center;
  min-width: 80px;
}

.vis-stat-val {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.vis-stat-lbl {
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 3px;
}



/* ----------------------------------
   CAPACITY & PROFESSIONALISM
----------------------------------- */
.capacity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 5rem 3rem;
  border-radius: 48px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: default;
}

/* icon-wrap variant for stats: centered, slightly smaller */
.stat-icon-wrap {
  width: 90px !important;
  height: 90px !important;
  margin: 0 auto 1.2rem !important;
  /* force center override from base class */
}

/* Adjust ring-inner inset proportionally for 90px container */
.stat-icon-wrap .ring-inner {
  inset: 12px !important;
  /* base uses 14px for 112px; scale down for 90px */
  width: auto;
  height: auto;
}

.stat-icon-wrap .icon-svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
  transition: color 0.3s ease;
}

/* Entry animation: ring spins once when stat becomes visible */
@keyframes statRingEntrance {
  0% {
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0;
  }
}

.stat-item.visible .stat-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  pointer-events: none;
  animation: statRingEntrance 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--anim-delay, 0.2s);
}

/* Stat number hover color driven by JS (same pattern as card-title) */
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-family: var(--font-heading);
  transition: color 0.3s ease;
}

.stat-item p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ----------------------------------
   FINAL CTA SECTION — Blue Gradient
----------------------------------- */
.final-cta {
  position: relative;
  background: linear-gradient(180deg, #152d6a 0%, #0f2d7a 100%);
  padding: 9rem 0;
  text-align: center;
  overflow: hidden;
}

/* Gradient orbs — lighter glows on blue bg */
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

/* Stretched full-width glow at the very top */
.cta-glow-1 {
  width: 150%;
  height: 600px;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-glow-2 {
  width: 350px;
  height: 350px;
  bottom: 0;
  left: 15%;
  background: radial-gradient(circle, rgba(99, 179, 255, 0.3) 0%, transparent 70%);
}

.cta-glow-3 {
  width: 300px;
  height: 300px;
  top: 20%;
  right: 8%;
  background: radial-gradient(circle, rgba(147, 210, 255, 0.2) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

.closing-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
}

.final-cta h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
  margin-bottom: 0;
}

.cta-inner>p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
  line-height: 1.7;
}

/* Single premium CTA button */
.btn-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-body);
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(74, 144, 217, 0.35);
  transition: all 0.4s ease;
  text-decoration: none;
  margin-top: 0.5rem;
  cursor: pointer;
  border: none;
}

.btn-cta-main i {
  width: 20px;
  height: 20px;
}

.btn-cta-main:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(74, 144, 217, 0.5);
  color: #ffffff;
}

/* ----------------------------------
   FOOTER — continues the blue gradient
----------------------------------- */

.footer {
  /* Seamlessly continues the blue gradient from CTA — no break */
  background: linear-gradient(180deg, #0f2d7a 0%, #0a1f56 100%);
  padding: 6rem 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 6rem;
}

.footer-about .logo {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  /* white logo text on blue bg */
}

.footer-about .logo .logo-super {
  color: #ffffff;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-btn i,
.social-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.social-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #ffffff;
}

.footer-contact ul li i,
.footer-contact ul li svg {
  color: rgba(147, 210, 255, 0.9);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}


/* ----------------------------------
   RESPONSIVE DESIGN
----------------------------------- */

/* Process accordion stacks on tablet */
@media (max-width: 992px) {
  .process-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    /* Release fixed height on mobile */
    min-height: auto;
  }

  .process-accordion {
    height: auto;
    /* Let content breathe on mobile */
    overflow: visible;
  }

  .visual-panel {
    position: static !important;
    min-height: 300px;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .badge {
    margin: 0 auto;
  }

  .hero-cta {
    justify-content: center;
  }

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

  .use-case-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .use-case-visual.left-mask .visual-circle,
  .use-case-visual.right-mask .visual-circle {
    transform: none;
    width: 400px;
    height: 400px;
    margin: 0 auto;
  }

  .use-case-visual {
    height: auto;
    justify-content: center !important;
  }

  .process-flow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .process-line {
    display: none;
  }

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

  .capacity-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 3rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .capacity-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cta-card h2 {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .hero-content p {
    font-size: 1.15rem;
  }

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

  .use-case-block.reverse {
    direction: ltr;
  }

  .visual-circle {
    width: 300px;
    height: 300px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.8rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap; /* Prevent awkward wrapping */
  }

  .capacity-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ----------------------------------
   WASHING MACHINE ANIMATION
----------------------------------- */
canvas {
  display: block;
  will-change: transform;
}

.wm-wrap {
  position: relative;
  width: 70%;
  max-width: 80%;
  aspect-ratio: 1;
  margin: 0 auto;
}

.fb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: fbf ease-in-out infinite;
}

@keyframes fbf {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.l-bezel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #f4f6fa 0%, #dde1ea 50%, #cdd2dc 100%);
  box-shadow: 22px 22px 48px #b2b7c2, -22px -22px 48px #ffffff, inset 0 3px 6px rgba(255, 255, 255, 0.95), inset 0 -3px 6px rgba(0, 0, 0, 0.08);
}

.l-groove {
  position: absolute;
  inset: 4.5%;
  border-radius: 50%;
  background: linear-gradient(145deg, #c8cdd6, #e8ecf2);
  box-shadow: inset 8px 8px 20px #a8adb8, inset -8px -8px 20px #ffffff;
}

.l-rim {
  position: absolute;
  inset: 8.2%;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0f3f8, #d8dde8);
  box-shadow: 12px 12px 28px #b0b5c0, -12px -12px 28px #ffffff, inset 0 2px 4px rgba(255, 255, 255, 0.9), inset 0 -2px 4px rgba(0, 0, 0, 0.06);
}

.l-seal {
  position: absolute;
  inset: 12.7%;
  border-radius: 50%;
  background: linear-gradient(145deg, #b8bdc8, #cdd2dc);
  box-shadow: inset 6px 6px 16px #989da8, inset -4px -4px 10px #e0e4ec;
}

.l-drum {
  position: absolute;
  inset: 15.5%;
  border-radius: 50%;
  overflow: hidden;
}

.l-glass {
  position: absolute;
  inset: 15.5%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 20;
  overflow: hidden;
}

.l-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(220, 235, 255, 0.18) 0%, rgba(180, 210, 255, 0.08) 100%);
}

.l-glass-ring {
  position: absolute;
  inset: 15.5%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 21;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.55), inset 0 0 0 5px rgba(200, 220, 255, 0.2);
}

.l-handle-wrap {
  position: absolute;
  right: 11.8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 5.9%;
  height: 15.5%;
}

.l-handle {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  background: linear-gradient(to right, #c8cdd6 0%, #f4f6fa 35%, #ffffff 50%, #e8ecf2 70%, #b8bdc8 100%);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.22), -3px -3px 8px rgba(255, 255, 255, 0.9), inset 0 2px 3px rgba(255, 255, 255, 0.8), inset 0 -2px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.l-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 20%;
  width: 2px;
  height: 60%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(180, 185, 196, 0), rgba(160, 165, 176, 0.6), rgba(180, 185, 196, 0));
  border-radius: 1px;
}

.l-handle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 8px;
  width: 6px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e8ecf2, #b8bdc8);
  box-shadow: 0 44px 0 rgba(160, 165, 176, 0.8);
}

.l-gloss {
  position: absolute;
  inset: 15.5%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 22;
  pointer-events: none;
}

.l-gloss-a {
  position: absolute;
  width: 75%;
  height: 55%;
  top: 5%;
  left: 5%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0) 65%);
  transform: rotate(-15deg);
}

.l-gloss-b {
  position: absolute;
  width: 28%;
  height: 18%;
  top: 12%;
  left: 52%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.l-gloss-c {
  position: absolute;
  width: 45%;
  height: 9%;
  bottom: 16%;
  left: 27%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

/* ----------------------------------
   STAGGERED ANIMATIONS
----------------------------------- */
.animate-up,
.animate-left,
.animate-right,
.animate-scale,
.fade-in {
  opacity: 0;
  will-change: opacity, transform;
}

.animate-up {
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-left {
  transform: translateX(-50px);
  transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-right {
  transform: translateX(50px);
  transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-scale {
  transform: scale(0.9);
  transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in {
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-up.visible,
.animate-left.visible,
.animate-right.visible,
.animate-scale.visible,
.fade-in.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Container responsive adjustments for mobile screens */
@media (max-width: 768px) {
  .container {
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 2rem 1rem;
  }
}