* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.swc-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* TOP BAR */
.swc-topbar {
  background: #12372a;
  color: #ffffff;
  font-size: 14px;
}

.swc-topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.swc-topbar-left,
.swc-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.swc-topbar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.swc-topbar a:hover {
  color: #f4c430;
}

/* HEADER */
.swc-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.swc-navbar {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.swc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #12372a;
  text-decoration: none;
  flex-shrink: 0;
}

.swc-logo-icon {
  width: 46px;
  height: 46px;
  background: #e8f5ee;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.swc-logo strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.swc-logo small {
  display: block;
  color: #6b7280;
  font-size: 12px;
  margin-top: 3px;
}

.swc-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.swc-menu a {
  color: #1f2937;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s ease;
}

.swc-menu a:hover {
  color: #0f8a5f;
}

.swc-cta,
.swc-mobile-cta {
  background: #0f8a5f;
  color: #ffffff !important;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(15, 138, 95, 0.25);
}

.swc-cta:hover,
.swc-mobile-cta:hover {
  background: #0b6f4c;
}

.swc-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: #e8f5ee;
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}

.swc-burger span {
  display: block;
  height: 3px;
  background: #12372a;
  border-radius: 10px;
  margin: 5px 0;
}

.swc-menu-close {
  display: none;
}

.swc-mobile-cta {
  display: none;
}

.swc-overlay {
  display: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .swc-topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .swc-topbar-left {
    display: none;
  }

  .swc-topbar-right {
    justify-content: center;
    gap: 14px;
  }

  .swc-navbar {
    height: 70px;
  }

  .swc-cta {
    display: none;
  }

  .swc-burger {
    display: block;
  }

  .swc-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(86%, 360px);
    height: 100vh;
    background: #ffffff;
    z-index: 1001;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 78px 24px 24px;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.16);
  }

  .swc-menu.active {
    right: 0;
  }

  .swc-menu a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #edf0ef;
    font-size: 16px;
  }

  .swc-menu-close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 18px;
    right: 20px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #12372a;
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
  }

  .swc-mobile-cta {
    display: block;
    text-align: center;
    margin-top: 18px;
    border-bottom: none !important;
  }

  .swc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1000;
  }

  .swc-overlay.active {
    display: block;
  }
}

@media (max-width: 480px) {
  .swc-logo strong {
    font-size: 17px;
  }

  .swc-logo small {
    font-size: 11px;
  }

  .swc-logo-icon {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }

  .swc-topbar {
    font-size: 13px;
  }
}


/* HERO SECTION */
.swc-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(15, 138, 95, 0.18), transparent 34%),
    linear-gradient(135deg, #f3faf6 0%, #ffffff 48%, #eef8f3 100%);
}

.swc-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  background: rgba(244, 196, 48, 0.22);
  border-radius: 50%;
}

.swc-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
}

.swc-hero-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 9px 16px;
  background: #e8f5ee;
  color: #0b6f4c;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.swc-hero-content h1 {
  margin: 0 0 20px;
  color: #12372a;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.swc-hero-content p {
  max-width: 620px;
  margin: 0 0 30px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
}

.swc-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.swc-hero-btn-primary,
.swc-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.swc-hero-btn-primary {
  background: #0f8a5f;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 138, 95, 0.28);
}

.swc-hero-btn-primary:hover {
  background: #0b6f4c;
  transform: translateY(-2px);
}

.swc-hero-btn-secondary {
  background: #ffffff;
  color: #12372a;
  border: 1px solid #d7e5de;
}

.swc-hero-btn-secondary:hover {
  border-color: #0f8a5f;
  color: #0f8a5f;
  transform: translateY(-2px);
}

.swc-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  gap: 14px;
}

.swc-hero-features div {
  padding: 18px;
  background: #ffffff;
  border: 1px solid #e4eee9;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(18, 55, 42, 0.06);
}

.swc-hero-features strong {
  display: block;
  color: #12372a;
  font-size: 18px;
  margin-bottom: 4px;
}

.swc-hero-features span {
  color: #6b7280;
  font-size: 13px;
}

.swc-hero-visual {
  display: flex;
  justify-content: flex-end;
}

.swc-hero-card {
  width: min(100%, 430px);
  padding: 34px;
  background: #ffffff;
  border-radius: 30px;
  border: 1px solid #e4eee9;
  box-shadow: 0 24px 60px rgba(18, 55, 42, 0.14);
}

.swc-truck-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: #e8f5ee;
  border-radius: 22px;
  font-size: 38px;
}

.swc-hero-card h2 {
  margin: 0 0 12px;
  color: #12372a;
  font-size: 28px;
  line-height: 1.2;
}

.swc-hero-card p {
  margin: 0 0 20px;
  color: #4b5563;
  line-height: 1.6;
}

.swc-hero-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.swc-hero-card li {
  margin-bottom: 12px;
  color: #1f2937;
  font-weight: 600;
}

.swc-call-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  background: #12372a;
  color: #ffffff;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.swc-call-box:hover {
  background: #0f8a5f;
}

/* RESPONSIVE HERO */
@media (max-width: 900px) {
  .swc-hero {
    padding: 64px 0;
  }

  .swc-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .swc-hero-content {
    text-align: center;
  }

  .swc-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .swc-hero-actions {
    justify-content: center;
  }

  .swc-hero-features {
    margin: 0 auto;
  }

  .swc-hero-visual {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .swc-hero {
    padding: 48px 0;
  }

  .swc-hero-content h1 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .swc-hero-content p {
    font-size: 16px;
  }

  .swc-hero-actions {
    flex-direction: column;
  }

  .swc-hero-btn-primary,
  .swc-hero-btn-secondary {
    width: 100%;
  }

  .swc-hero-features {
    grid-template-columns: 1fr;
  }

  .swc-hero-card {
    padding: 26px;
    border-radius: 24px;
  }
}


/* KEUNGGULAN LAYANAN */
.swc-benefits {
  position: relative;
  padding: 90px 0;
  background: #ffffff;
}

.swc-section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.swc-section-heading span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 15px;
  background: #e8f5ee;
  color: #0b6f4c;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.swc-section-heading h2 {
  margin: 0 0 16px;
  color: #12372a;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.8px;
}

.swc-section-heading p {
  margin: 0;
  color: #5b6472;
  font-size: 17px;
  line-height: 1.7;
}

.swc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.swc-benefit-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e3eee8;
  border-radius: 26px;
  box-shadow: 0 14px 34px rgba(18, 55, 42, 0.07);
  transition: 0.25s ease;
}

.swc-benefit-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  background: rgba(15, 138, 95, 0.08);
  border-radius: 50%;
  transition: 0.25s ease;
}

.swc-benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 138, 95, 0.35);
  box-shadow: 0 20px 46px rgba(18, 55, 42, 0.12);
}

.swc-benefit-card:hover::before {
  background: rgba(244, 196, 48, 0.18);
  transform: scale(1.18);
}

.swc-benefit-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: #e8f5ee;
  border-radius: 20px;
  font-size: 30px;
}

.swc-benefit-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #12372a;
  font-size: 21px;
  line-height: 1.25;
}

.swc-benefit-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5b6472;
  font-size: 15.5px;
  line-height: 1.7;
}

/* RESPONSIVE BENEFITS */
@media (max-width: 900px) {
  .swc-benefits {
    padding: 70px 0;
  }

  .swc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .swc-benefits {
    padding: 56px 0;
  }

  .swc-section-heading {
    margin-bottom: 34px;
  }

  .swc-section-heading h2 {
    font-size: 30px;
  }

  .swc-section-heading p {
    font-size: 16px;
  }

  .swc-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .swc-benefit-card {
    padding: 24px;
    border-radius: 22px;
  }
}

/* LAYANAN KAMI */
.swc-services {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at bottom left, rgba(244, 196, 48, 0.16), transparent 32%),
    linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
}

.swc-services::before {
  content: "";
  position: absolute;
  top: 80px;
  right: -130px;
  width: 300px;
  height: 300px;
  background: rgba(15, 138, 95, 0.08);
  border-radius: 50%;
}

.swc-services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.swc-service-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e3eee8;
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(18, 55, 42, 0.07);
  transition: 0.25s ease;
}

.swc-service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  background: rgba(15, 138, 95, 0.08);
  border-radius: 50%;
  transition: 0.25s ease;
}

.swc-service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(15, 138, 95, 0.36);
  box-shadow: 0 22px 50px rgba(18, 55, 42, 0.13);
}

.swc-service-card:hover::after {
  background: rgba(244, 196, 48, 0.2);
  transform: scale(1.2);
}

.swc-service-icon {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: #e8f5ee;
  border-radius: 22px;
  font-size: 32px;
}

.swc-service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 13px;
  color: #12372a;
  font-size: 22px;
  line-height: 1.25;
}

.swc-service-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: #5b6472;
  font-size: 15.5px;
  line-height: 1.75;
}

.swc-service-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f8a5f;
  font-weight: 800;
  text-decoration: none;
}

.swc-service-link::after {
  content: "→";
  transition: 0.2s ease;
}

.swc-service-link:hover {
  color: #0b6f4c;
}

.swc-service-link:hover::after {
  transform: translateX(4px);
}

.swc-services-cta {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  padding: 30px;
  background: #12372a;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 50px rgba(18, 55, 42, 0.18);
}

.swc-services-cta h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 25px;
}

.swc-services-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.swc-services-cta a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  background: #f4c430;
  color: #12372a;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(244, 196, 48, 0.24);
}

.swc-services-cta a:hover {
  background: #ffd84f;
}

/* RESPONSIVE SERVICES */
@media (max-width: 900px) {
  .swc-services {
    padding: 70px 0;
  }

  .swc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .swc-services-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .swc-services {
    padding: 56px 0;
  }

  .swc-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .swc-service-card {
    min-height: auto;
    padding: 24px;
    border-radius: 22px;
  }

  .swc-services-cta {
    padding: 24px;
    border-radius: 22px;
    text-align: center;
  }

  .swc-services-cta a {
    width: 100%;
  }
}


/* AREA LAYANAN JAKARTA */
.swc-area {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(15, 138, 95, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4faf6 100%);
}

.swc-area::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -140px;
  width: 340px;
  height: 340px;
  background: rgba(244, 196, 48, 0.16);
  border-radius: 50%;
}

.swc-area-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 34px;
}

.swc-area-content {
  position: sticky;
  top: 120px;
  padding: 34px;
  background: #12372a;
  border-radius: 30px;
  box-shadow: 0 24px 54px rgba(18, 55, 42, 0.16);
}

.swc-area-content h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.2;
}

.swc-area-content p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.swc-area-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.swc-area-highlight div {
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  text-align: center;
}

.swc-area-highlight strong {
  display: block;
  color: #f4c430;
  font-size: 18px;
  margin-bottom: 4px;
}

.swc-area-highlight span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.swc-area-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  padding: 0 22px;
  background: #f4c430;
  color: #12372a;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(244, 196, 48, 0.22);
}

.swc-area-cta:hover {
  background: #ffd84f;
}

.swc-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.swc-area-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 158px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e3eee8;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(18, 55, 42, 0.07);
  transition: 0.25s ease;
}

.swc-area-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 120px;
  height: 120px;
  background: rgba(15, 138, 95, 0.07);
  border-radius: 50%;
  transition: 0.25s ease;
}

.swc-area-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 138, 95, 0.36);
  box-shadow: 0 20px 46px rgba(18, 55, 42, 0.12);
}

.swc-area-card:hover::after {
  background: rgba(244, 196, 48, 0.18);
  transform: scale(1.2);
}

.swc-area-card > span {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #e8f5ee;
  border-radius: 16px;
  font-size: 24px;
}

.swc-area-card h4 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: #12372a;
  font-size: 20px;
  line-height: 1.25;
}

.swc-area-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5b6472;
  font-size: 14.5px;
  line-height: 1.6;
}

.swc-area-card-main {
  grid-column: span 2;
  background: linear-gradient(135deg, #e8f5ee 0%, #ffffff 100%);
}

/* RESPONSIVE AREA */
@media (max-width: 900px) {
  .swc-area {
    padding: 70px 0;
  }

  .swc-area-wrapper {
    grid-template-columns: 1fr;
  }

  .swc-area-content {
    position: relative;
    top: auto;
  }
}

@media (max-width: 620px) {
  .swc-area {
    padding: 56px 0;
  }

  .swc-area-content {
    padding: 26px;
    border-radius: 24px;
  }

  .swc-area-content h3 {
    font-size: 26px;
  }

  .swc-area-highlight {
    grid-template-columns: 1fr;
  }

  .swc-area-list {
    grid-template-columns: 1fr;
  }

  .swc-area-card,
  .swc-area-card-main {
    grid-column: span 1;
  }

  .swc-area-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }
}

/* HARGA SEDOT WC */
.swc-pricing {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(244, 196, 48, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.swc-pricing::before {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  background: rgba(15, 138, 95, 0.1);
  border-radius: 50%;
}

.swc-pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.swc-price-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e3eee8;
  border-radius: 30px;
  box-shadow: 0 16px 38px rgba(18, 55, 42, 0.08);
  transition: 0.25s ease;
}

.swc-price-card:hover {
  transform: translateY(-7px);
  border-color: rgba(15, 138, 95, 0.35);
  box-shadow: 0 22px 54px rgba(18, 55, 42, 0.13);
}

.swc-price-card::after {
  content: "";
  position: absolute;
  right: -65px;
  top: -65px;
  width: 150px;
  height: 150px;
  background: rgba(15, 138, 95, 0.08);
  border-radius: 50%;
}

.swc-price-popular {
  border: 2px solid #0f8a5f;
  transform: translateY(-10px);
}

.swc-price-popular:hover {
  transform: translateY(-16px);
}

.swc-popular-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  padding: 7px 12px;
  background: #f4c430;
  color: #12372a;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.swc-price-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  background: #e8f5ee;
  color: #0b6f4c;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.swc-price-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #12372a;
  font-size: 25px;
  line-height: 1.2;
}

.swc-price-desc {
  position: relative;
  z-index: 1;
  min-height: 82px;
  margin: 0 0 22px;
  color: #5b6472;
  font-size: 15.5px;
  line-height: 1.7;
}

.swc-price {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  padding: 22px;
  background: linear-gradient(135deg, #f4faf6 0%, #ffffff 100%);
  border: 1px solid #e3eee8;
  border-radius: 22px;
}

.swc-price span {
  display: block;
  margin-bottom: 6px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 700;
}

.swc-price strong {
  display: block;
  color: #12372a;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -1px;
}

.swc-price-card ul {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.swc-price-card li {
  margin-bottom: 12px;
  color: #334155;
  font-size: 15px;
  line-height: 1.5;
}

.swc-price-card a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  background: #0f8a5f;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(15, 138, 95, 0.22);
}

.swc-price-card a:hover {
  background: #0b6f4c;
}

.swc-pricing-note {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  padding: 28px 30px;
  background: #12372a;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 50px rgba(18, 55, 42, 0.16);
}

.swc-pricing-note strong {
  display: block;
  margin-bottom: 6px;
  color: #f4c430;
  font-size: 18px;
}

.swc-pricing-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.swc-pricing-note a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  background: #f4c430;
  color: #12372a;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.swc-pricing-note a:hover {
  background: #ffd84f;
}

/* RESPONSIVE PRICING */
@media (max-width: 980px) {
  .swc-pricing-grid {
    grid-template-columns: 1fr;
  }

  .swc-price-popular {
    transform: none;
  }

  .swc-price-popular:hover {
    transform: translateY(-7px);
  }

  .swc-price-desc {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .swc-pricing {
    padding: 56px 0;
  }

  .swc-price-card {
    padding: 24px;
    border-radius: 24px;
  }

  .swc-popular-badge {
    position: relative;
    top: auto;
    right: auto;
    display: inline-flex;
    margin-bottom: 12px;
  }

  .swc-price strong {
    font-size: 32px;
  }

  .swc-pricing-note {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-radius: 22px;
  }

  .swc-pricing-note a {
    width: 100%;
  }
}

/* PROSES KERJA */
.swc-process {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(244, 196, 48, 0.16), transparent 34%),
    linear-gradient(135deg, #f7fbf8 0%, #ffffff 100%);
}

.swc-process::before {
  content: "";
  position: absolute;
  left: -130px;
  top: 120px;
  width: 300px;
  height: 300px;
  background: rgba(15, 138, 95, 0.09);
  border-radius: 50%;
}

.swc-process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.swc-process-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e3eee8;
  border-radius: 28px;
  box-shadow: 0 16px 38px rgba(18, 55, 42, 0.08);
  transition: 0.25s ease;
}

.swc-process-card:hover {
  transform: translateY(-7px);
  border-color: rgba(15, 138, 95, 0.35);
  box-shadow: 0 22px 52px rgba(18, 55, 42, 0.13);
}

.swc-process-card::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 145px;
  height: 145px;
  background: rgba(15, 138, 95, 0.08);
  border-radius: 50%;
  transition: 0.25s ease;
}

.swc-process-card:hover::after {
  background: rgba(244, 196, 48, 0.2);
  transform: scale(1.2);
}

.swc-process-number {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: rgba(15, 138, 95, 0.18);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.swc-process-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: #e8f5ee;
  border-radius: 20px;
  font-size: 28px;
}

.swc-process-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #12372a;
  font-size: 20px;
  line-height: 1.25;
}

.swc-process-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5b6472;
  font-size: 14.5px;
  line-height: 1.7;
}

.swc-process-cta {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  padding: 32px;
  background: #12372a;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(18, 55, 42, 0.18);
}

.swc-process-cta h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 30px;
}

.swc-process-cta p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.swc-process-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  background: #f4c430;
  color: #12372a;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(244, 196, 48, 0.22);
}

.swc-process-cta a:hover {
  background: #ffd84f;
}

/* RESPONSIVE PROCESS */
@media (max-width: 1180px) {
  .swc-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .swc-process {
    padding: 70px 0;
  }

  .swc-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .swc-process-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .swc-process {
    padding: 56px 0;
  }

  .swc-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .swc-process-card {
    padding: 24px;
    border-radius: 22px;
  }

  .swc-process-number {
    font-size: 38px;
  }

  .swc-process-cta {
    padding: 26px;
    border-radius: 24px;
  }

  .swc-process-cta h3 {
    font-size: 26px;
  }

  .swc-process-cta a {
    width: 100%;
  }
}

/* KENAPA MEMILIH KAMI */
.swc-why {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(15, 138, 95, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.swc-why::before {
  content: "";
  position: absolute;
  right: -150px;
  top: -150px;
  width: 360px;
  height: 360px;
  background: rgba(244, 196, 48, 0.16);
  border-radius: 50%;
}

.swc-why-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.swc-why-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 15px;
  background: #e8f5ee;
  color: #0b6f4c;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.swc-why-content h2 {
  margin: 0 0 18px;
  color: #12372a;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.15;
  letter-spacing: -1px;
}

.swc-why-text {
  margin: 0 0 34px;
  color: #5b6472;
  font-size: 17px;
  line-height: 1.8;
}

.swc-why-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}

.swc-why-point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #e3eee8;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(18, 55, 42, 0.06);
  transition: 0.25s ease;
}

.swc-why-point:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 138, 95, 0.34);
}

.swc-why-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #e8f5ee;
  border-radius: 18px;
  font-size: 28px;
}

.swc-why-point h3 {
  margin: 0 0 8px;
  color: #12372a;
  font-size: 20px;
}

.swc-why-point p {
  margin: 0;
  color: #5b6472;
  font-size: 15px;
  line-height: 1.7;
}

.swc-why-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.swc-why-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: 0.25s ease;
}

.swc-why-actions a:first-child {
  background: #0f8a5f;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 138, 95, 0.22);
}

.swc-why-actions a:first-child:hover {
  background: #0b6f4c;
  transform: translateY(-2px);
}

.swc-why-secondary {
  background: #ffffff;
  color: #12372a;
  border: 1px solid #dce8e1;
}

.swc-why-secondary:hover {
  border-color: #0f8a5f;
  color: #0f8a5f;
}

/* RIGHT VISUAL */
.swc-why-visual {
  display: flex;
  justify-content: center;
}

.swc-why-card-large {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  padding: 36px;
  background: #12372a;
  border-radius: 34px;
  box-shadow: 0 28px 60px rgba(18, 55, 42, 0.2);
}

.swc-why-card-large::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 200px;
  height: 200px;
  background: rgba(244, 196, 48, 0.16);
  border-radius: 50%;
}

.swc-why-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}

.swc-why-top-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  font-size: 36px;
}

.swc-why-top strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.2;
}

.swc-why-top span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.swc-why-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.swc-why-stat {
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
}

.swc-why-stat strong {
  display: block;
  margin-bottom: 6px;
  color: #f4c430;
  font-size: 22px;
}

.swc-why-stat span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.swc-why-note {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
}

.swc-why-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

/* RESPONSIVE WHY */
@media (max-width: 980px) {
  .swc-why-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .swc-why-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .swc-why {
    padding: 56px 0;
  }

  .swc-why-content h2 {
    font-size: 32px;
  }

  .swc-why-text {
    font-size: 16px;
  }

  .swc-why-point {
    padding: 20px;
    border-radius: 22px;
  }

  .swc-why-card-large {
    padding: 26px;
    border-radius: 28px;
  }

  .swc-why-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .swc-why-stats {
    grid-template-columns: 1fr;
  }

  .swc-why-actions {
    flex-direction: column;
  }

  .swc-why-actions a {
    width: 100%;
  }
}

/* TESTIMONI PELANGGAN */
.swc-testimonials {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at bottom right, rgba(15, 138, 95, 0.1), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f6fbf8 100%);
}

.swc-testimonials::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  background: rgba(244, 196, 48, 0.14);
  border-radius: 50%;
}

.swc-testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.swc-testimonial-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e3eee8;
  border-radius: 30px;
  box-shadow: 0 16px 38px rgba(18, 55, 42, 0.08);
  transition: 0.25s ease;
}

.swc-testimonial-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 140px;
  height: 140px;
  background: rgba(15, 138, 95, 0.07);
  border-radius: 50%;
  transition: 0.25s ease;
}

.swc-testimonial-card:hover {
  transform: translateY(-7px);
  border-color: rgba(15, 138, 95, 0.34);
  box-shadow: 0 24px 54px rgba(18, 55, 42, 0.13);
}

.swc-testimonial-card:hover::after {
  background: rgba(244, 196, 48, 0.18);
  transform: scale(1.18);
}

.swc-testimonial-featured {
  border: 2px solid #0f8a5f;
  transform: translateY(-10px);
}

.swc-testimonial-featured:hover {
  transform: translateY(-16px);
}

.swc-featured-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  padding: 7px 12px;
  background: #f4c430;
  color: #12372a;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.swc-testimonial-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.swc-testimonial-avatar {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: #e8f5ee;
  color: #0f8a5f;
  border-radius: 20px;
  font-size: 24px;
  font-weight: 900;
}

.swc-testimonial-top h3 {
  margin: 0 0 4px;
  color: #12372a;
  font-size: 20px;
}

.swc-testimonial-top span {
  color: #6b7280;
  font-size: 14px;
}

.swc-testimonial-stars {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: #f4c430;
  font-size: 20px;
  letter-spacing: 2px;
}

.swc-testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5b6472;
  font-size: 15.5px;
  line-height: 1.8;
}

/* RESPONSIVE TESTIMONIAL */
@media (max-width: 980px) {
  .swc-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .swc-testimonial-featured {
    transform: none;
  }

  .swc-testimonial-featured:hover {
    transform: translateY(-7px);
  }
}

@media (max-width: 620px) {
  .swc-testimonials {
    padding: 56px 0;
  }

  .swc-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .swc-testimonial-card {
    padding: 24px;
    border-radius: 24px;
  }

  .swc-featured-badge {
    position: relative;
    top: auto;
    right: auto;
    display: inline-flex;
    margin-bottom: 14px;
  }
}

/* FAQ */
.swc-faq {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(15, 138, 95, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.swc-faq::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: rgba(244, 196, 48, 0.14);
  border-radius: 50%;
}

.swc-faq-wrapper {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.swc-faq-item {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e3eee8;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(18, 55, 42, 0.07);
}

.swc-faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #12372a;
  font-size: 18px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.swc-faq-question span {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #e8f5ee;
  color: #0f8a5f;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  transition: 0.25s ease;
}

.swc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.swc-faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
  color: #5b6472;
  font-size: 15.5px;
  line-height: 1.8;
}

.swc-faq-item.active .swc-faq-answer {
  max-height: 220px;
}

.swc-faq-item.active .swc-faq-question span {
  background: #0f8a5f;
  color: #ffffff;
  transform: rotate(45deg);
}

/* RESPONSIVE FAQ */
@media (max-width: 620px) {
  .swc-faq {
    padding: 56px 0;
  }

  .swc-faq-question {
    padding: 20px;
    font-size: 16px;
  }

  .swc-faq-answer p {
    padding: 0 20px 20px;
    font-size: 15px;
  }
}

/* FOOTER */
.swc-footer {
  position: relative;
  overflow: hidden;
  background: #0f2f24;
}

/* CTA FOOTER */
.swc-footer-cta {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.swc-footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px;
  background:
    linear-gradient(135deg, #12372a 0%, #0f8a5f 100%);
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.swc-footer-cta-content span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.swc-footer-cta-content h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -1px;
}

.swc-footer-cta-content p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.8;
}

.swc-footer-cta-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  background: #f4c430;
  color: #12372a;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(244,196,48,0.22);
}

.swc-footer-cta-action a:hover {
  background: #ffd84f;
}

/* MAIN FOOTER */
.swc-footer-main {
  position: relative;
  padding: 90px 0 60px;
}

.swc-footer-main::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: rgba(244,196,48,0.08);
  border-radius: 50%;
}

.swc-footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 36px;
}

.swc-footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.swc-footer-logo-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 22px;
  font-size: 32px;
}

.swc-footer-logo strong {
  display: block;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.1;
}

.swc-footer-logo span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
}

.swc-footer-about {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.76);
  font-size: 15.5px;
  line-height: 1.8;
}

.swc-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.swc-footer-contact a {
  color: #f4c430;
  text-decoration: none;
  font-weight: 700;
}

.swc-footer-col h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 22px;
}

.swc-footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.swc-footer-col li {
  margin-bottom: 14px;
}

.swc-footer-col a {
  color: rgba(255,255,255,0.76);
  text-decoration: none;
  line-height: 1.7;
  transition: 0.2s ease;
}

.swc-footer-col a:hover {
  color: #f4c430;
  padding-left: 4px;
}

/* BOTTOM */
.swc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.swc-footer-bottom-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.swc-footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}

.swc-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.swc-footer-bottom-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 14px;
}

.swc-footer-bottom-links a:hover {
  color: #f4c430;
}

/* RESPONSIVE FOOTER */
@media (max-width: 980px) {

  .swc-footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .swc-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {

  .swc-footer-cta {
    padding-top: 56px;
  }

  .swc-footer-cta-inner {
    padding: 28px;
    border-radius: 26px;
  }

  .swc-footer-cta-content h2 {
    font-size: 32px;
  }

  .swc-footer-cta-content p {
    font-size: 16px;
  }

  .swc-footer-cta-action {
    width: 100%;
  }

  .swc-footer-cta-action a {
    width: 100%;
  }

  .swc-footer-main {
    padding: 56px 0 40px;
  }

  .swc-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .swc-footer-bottom-inner {
    min-height: auto;
    padding: 20px 0;
    flex-direction: column;
    text-align: center;
  }

  .swc-footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* MAINTENANCE SECTION */
.swc-maintenance-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(15, 138, 95, 0.14), transparent 34%),
    linear-gradient(135deg, #f4faf6 0%, #ffffff 55%, #eef8f3 100%);
}

.swc-maintenance-section::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: rgba(244, 196, 48, 0.14);
  border-radius: 50%;
}

.swc-maintenance-box {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 50px;
  background: #ffffff;
  border: 1px solid #e3eee8;
  border-radius: 36px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(18, 55, 42, 0.14);
}

.swc-maintenance-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  background: #e8f5ee;
  border-radius: 28px;
  font-size: 44px;
}

.swc-maintenance-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 16px;
  background: #f4c430;
  color: #12372a;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.swc-maintenance-box h2 {
  margin: 0 0 18px;
  color: #12372a;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: -1px;
}

.swc-maintenance-box p {
  max-width: 620px;
  margin: 0 auto 32px;
  color: #5b6472;
  font-size: 17px;
  line-height: 1.8;
}

.swc-maintenance-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 34px;
}

.swc-maintenance-item {
  padding: 22px;
  background: #f7fbf8;
  border: 1px solid #e3eee8;
  border-radius: 24px;
}

.swc-maintenance-item strong {
  display: block;
  margin-bottom: 6px;
  color: #12372a;
  font-size: 18px;
}

.swc-maintenance-item span {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.swc-maintenance-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  background: #0f8a5f;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(15, 138, 95, 0.24);
  transition: 0.25s ease;
}

.swc-maintenance-btn:hover {
  background: #0b6f4c;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 620px) {

  .swc-maintenance-section {
    padding: 60px 0;
  }

  .swc-maintenance-box {
    padding: 32px 22px;
    border-radius: 28px;
  }

  .swc-maintenance-box h2 {
    font-size: 34px;
  }

  .swc-maintenance-box p {
    font-size: 16px;
  }

  .swc-maintenance-info {
    grid-template-columns: 1fr;
  }

  .swc-maintenance-btn {
    width: 100%;
  }
}


/* BLOG HOME */
.swc-blog-home {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(15, 138, 95, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.swc-blog-home::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: rgba(244, 196, 48, 0.14);
  border-radius: 50%;
}

.swc-blog-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.swc-blog-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e3eee8;
  border-radius: 30px;
  box-shadow: 0 16px 38px rgba(18, 55, 42, 0.08);
  transition: 0.25s ease;
}

.swc-blog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(15, 138, 95, 0.34);
  box-shadow: 0 24px 54px rgba(18, 55, 42, 0.13);
}

.swc-blog-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.swc-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.swc-blog-card:hover .swc-blog-image img {
  transform: scale(1.06);
}

.swc-blog-content {
  padding: 28px;
}

.swc-blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #0f8a5f;
  font-size: 13px;
  font-weight: 800;
}

.swc-blog-content h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.4;
}

.swc-blog-content h3 a {
  color: #12372a;
  text-decoration: none;
}

.swc-blog-content h3 a:hover {
  color: #0f8a5f;
}

.swc-blog-content p {
  margin: 0 0 22px;
  color: #5b6472;
  font-size: 15.5px;
  line-height: 1.8;
}

.swc-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f8a5f;
  font-weight: 900;
  text-decoration: none;
}

.swc-blog-link::after {
  content: "→";
  transition: 0.2s ease;
}

.swc-blog-link:hover::after {
  transform: translateX(4px);
}

/* CTA BLOG */
.swc-blog-cta {
  margin-top: 34px;
  padding: 34px;
  background: #12372a;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 50px rgba(18, 55, 42, 0.18);
}

.swc-blog-cta h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 30px;
}

.swc-blog-cta p {
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

.swc-blog-cta a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  background: #f4c430;
  color: #12372a;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(244,196,48,0.22);
}

.swc-blog-cta a:hover {
  background: #ffd84f;
}

/* RESPONSIVE BLOG */
@media (max-width: 980px) {

  .swc-blog-grid {
    grid-template-columns: 1fr;
  }

  .swc-blog-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {

  .swc-blog-home {
    padding: 56px 0;
  }

  .swc-blog-card {
    border-radius: 24px;
  }

  .swc-blog-content {
    padding: 22px;
  }

  .swc-blog-content h3 {
    font-size: 22px;
  }

  .swc-blog-cta {
    padding: 26px;
    border-radius: 24px;
  }

  .swc-blog-cta h3 {
    font-size: 26px;
  }

  .swc-blog-cta a {
    width: 100%;
  }
}