/* ======================================================
   PAGE: SERVICE DETAIL HERO SECTION START
   File: assets/css/pages/service-detail.css
====================================================== */

.service-hero-section {
  --service-accent: var(--secondary-color);

  position: relative;
  min-height: calc(100vh - 124px);
  padding: clamp(22px, 3vh, 34px) 0 clamp(26px, 3.4vh, 44px);
  overflow: hidden;

  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(27, 255, 255, 0.16),
      transparent 30%
    ),
    radial-gradient(circle at 88% 78%, rgba(46, 49, 146, 0.3), transparent 38%),
    linear-gradient(135deg, #07112b 0%, #0d1835 52%, #111d3a 100%);
}

.service-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.service-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.service-orb-one {
  width: clamp(220px, 22vw, 340px);
  height: clamp(220px, 22vw, 340px);
  top: -120px;
  right: -95px;
  background: rgba(27, 255, 255, 0.18);
}

.service-orb-two {
  width: clamp(280px, 30vw, 430px);
  height: clamp(280px, 30vw, 430px);
  left: -150px;
  bottom: -180px;
  background: rgba(46, 49, 146, 0.44);
}

/* Main shell */
.service-hero-shell {
  position: relative;
  z-index: 2;

  min-height: clamp(520px, calc(100vh - 210px), 720px);
  padding: clamp(20px, 3.2vw, 42px);
  border-radius: clamp(26px, 2.4vw, 36px);

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.085),
      rgba(255, 255, 255, 0.032)
    ),
    rgba(8, 16, 39, 0.84);

  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow:
    0 34px 95px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  overflow: hidden;
}

.service-hero-shell::before {
  content: "";
  position: absolute;
  width: 54%;
  height: 2px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(27, 255, 255, 0.74),
    transparent
  );
}

.service-hero-row {
  position: relative;
  z-index: 2;
  width: 100%;
  row-gap: clamp(22px, 4vw, 46px);
}

/* Visual Side */
.service-hero-visual-simple {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 42vw, 560px);

  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-visual-simple::before {
  content: "";
  position: absolute;
  width: min(78%, 430px);
  height: min(78%, 430px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  background: radial-gradient(
    circle,
    rgba(27, 255, 255, 0.18),
    rgba(46, 49, 146, 0.14),
    transparent 68%
  );

  filter: blur(42px);
  opacity: 0.85;
  pointer-events: none;
}

.service-hero-simple-image {
  position: relative;
  z-index: 2;

  width: min(100%, clamp(360px, 42vw, 610px));
  max-height: clamp(330px, 58vh, 570px);
  height: auto;

  display: block;
  object-fit: contain;
  object-position: center;

  mix-blend-mode: multiply;

  filter: drop-shadow(0 28px 58px rgba(0, 0, 0, 0.2)) saturate(1.05);

  animation: serviceHeroImageFloat 5.5s ease-in-out infinite;
}

body.dark-mode .service-hero-simple-image {
  mix-blend-mode: normal;
  filter: drop-shadow(0 32px 66px rgba(0, 0, 0, 0.38)) saturate(1.08);
}

@keyframes serviceHeroImageFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Content Side */
.service-hero-content-simple {
  position: relative;
  z-index: 3;
  max-width: 640px;
}

.service-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: clamp(10px, 1.4vw, 16px);

  color: var(--service-accent);
  font-size: clamp(11.5px, 0.9vw, 13px);
  font-weight: 950;
}

.service-hero-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: var(--gradient-main);
}

.service-hero-title {
  margin: 0 0 clamp(16px, 2vw, 22px);

  color: #ffffff;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.42;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.service-title-static {
  display: block;
}

.service-rotating-text-simple {
  position: relative;
  display: block;

  width: 100%;
  min-height: 2.45em;
  margin: 4px 0;

  color: var(--service-accent);
  overflow: hidden;
}

.service-rotating-text-simple::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 4px;

  width: min(220px, 46%);
  height: 8px;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    rgba(27, 255, 255, 0.34),
    rgba(46, 49, 146, 0.12),
    transparent
  );

  pointer-events: none;
}

.service-rotating-text-simple span {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  opacity: 0;
  transform: translateY(22px);

  white-space: normal;
  line-height: 1.42;

  color: var(--service-accent);
  font-size: clamp(22px, 2.35vw, 31px);
  font-weight: 950;

  text-shadow: 0 10px 34px rgba(46, 49, 146, 0.12);

  animation: serviceRotatingTextSimple 12s infinite;
}

.service-rotating-text-simple span:nth-child(1) {
  animation-delay: 0s;
}

.service-rotating-text-simple span:nth-child(2) {
  animation-delay: 3s;
}

.service-rotating-text-simple span:nth-child(3) {
  animation-delay: 6s;
}

.service-rotating-text-simple span:nth-child(4) {
  animation-delay: 9s;
}

@keyframes serviceRotatingTextSimple {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }

  6%,
  22% {
    opacity: 1;
    transform: translateY(0);
  }

  28%,
  100% {
    opacity: 0;
    transform: translateY(-22px);
  }
}

.service-hero-content-simple p {
  max-width: 610px;
  margin: 0 0 clamp(18px, 2vw, 28px);

  color: rgba(255, 255, 255, 0.72);

  font-size: clamp(13.5px, 1vw, 16px);
  line-height: 1.95;
}

.service-hero-actions-simple {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.service-hero-primary {
  min-width: 160px;
  min-height: 50px;
  border-radius: 999px;
}

/* Light Mode */
body:not(.dark-mode) .service-hero-section {
  --service-accent: var(--primary-color);

  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(27, 255, 255, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(46, 49, 146, 0.14),
      transparent 38%
    ),
    linear-gradient(135deg, #eef5ff 0%, #ffffff 52%, #f7f9fc 100%);
}

body:not(.dark-mode) .service-hero-shell {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.7)
    ),
    rgba(255, 255, 255, 0.86);

  border-color: rgba(232, 237, 245, 0.96);
  box-shadow: 0 32px 88px rgba(28, 40, 85, 0.14);
}

body:not(.dark-mode) .service-hero-title {
  color: #1c2855;
}

body:not(.dark-mode) .service-hero-content-simple p {
  color: #5f6b7a;
}

/* Large screens / zoom-out stability */
@media (min-width: 1400px) {
  .service-hero-shell {
    min-height: clamp(560px, calc(100vh - 220px), 760px);
  }

  .service-hero-simple-image {
    width: min(100%, 620px);
  }
}

/* Laptop */
@media (max-width: 1199px) {
  .service-hero-shell {
    min-height: auto;
  }

  .service-hero-visual-simple {
    min-height: clamp(340px, 42vw, 500px);
  }

  .service-hero-simple-image {
    width: min(100%, clamp(340px, 42vw, 530px));
  }
}

/* Tablet / Mobile */
@media (max-width: 991px) {
  .service-hero-section {
    min-height: auto;
    padding: 28px 0 38px;
  }

  .service-hero-shell {
    min-height: auto;
    padding: 30px 22px;
  }

  .service-hero-content-simple {
    max-width: 100%;
    text-align: center;
  }

  .service-hero-kicker {
    justify-content: center;
  }

  .service-hero-title {
    font-size: clamp(28px, 5vw, 36px);
    line-height: 1.55;
  }

  .service-rotating-text-simple {
    min-height: 2.35em;
  }

  .service-rotating-text-simple::after {
    inset-inline-start: 50%;
    transform: translateX(-50%);
  }

  .service-rotating-text-simple span {
    justify-content: center;
    text-align: center;
    font-size: clamp(19px, 4.2vw, 24px);
    line-height: 1.55;
  }

  .service-hero-content-simple p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }

  .service-hero-actions-simple {
    justify-content: center;
  }

  .service-hero-visual-simple {
    min-height: clamp(280px, 55vw, 380px);
  }

  .service-hero-simple-image {
    width: min(100%, 460px);
    max-height: 380px;
  }
}

@media (max-width: 575px) {
  .service-hero-shell {
    padding: 24px 16px;
    border-radius: 26px;
  }

  .service-hero-title {
    font-size: 27px;
  }

  .service-rotating-text-simple {
    min-height: 2.55em;
  }

  .service-rotating-text-simple span {
    font-size: 19px;
  }

  .service-hero-content-simple p {
    font-size: 14px;
    line-height: 1.9;
  }

  .service-hero-actions-simple {
    align-items: stretch;
    flex-direction: column;
  }

  .service-hero-primary {
    width: 100%;
    min-height: 48px;
  }

  .service-hero-visual-simple {
    min-height: 270px;
  }

  .service-hero-simple-image {
    width: 100%;
    max-height: 300px;
  }
}

/* Very small phones */
@media (max-width: 390px) {
  .service-hero-title {
    font-size: 24px;
  }

  .service-rotating-text-simple span {
    font-size: 17.5px;
  }

  .service-hero-visual-simple {
    min-height: 235px;
  }

  .service-hero-simple-image {
    max-height: 260px;
  }
}

/* ======================================================
   PAGE: SERVICE DETAIL HERO SECTION END
====================================================== */
/* ======================================================
   PAGE: CLOUD PHONE FEATURES OVERVIEW SECTION START
====================================================== */

.cloud-feature-orbit-section {
  --cloud-feature-accent: var(--secondary-color);

  position: relative;
  min-height: calc(100vh - 124px);
  padding: 46px 0;
  overflow: hidden;

  /* Same visual language as hero to avoid hard section break */
  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(27, 255, 255, 0.16),
      transparent 30%
    ),
    radial-gradient(circle at 88% 78%, rgba(46, 49, 146, 0.3), transparent 38%),
    linear-gradient(135deg, #07112b 0%, #0d1835 52%, #111d3a 100%);
}

.cloud-feature-orbit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(8, 16, 39, 0) 0%,
    rgba(8, 16, 39, 0.32) 42%,
    rgba(8, 16, 39, 0) 100%
  );
}

.cloud-feature-bg {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.13) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
}

.cloud-feature-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  pointer-events: none;
}

.cloud-feature-orb.orb-a {
  width: 330px;
  height: 330px;
  top: -130px;
  right: -120px;
  background: rgba(27, 255, 255, 0.15);
}

.cloud-feature-orb.orb-b {
  width: 390px;
  height: 390px;
  left: -150px;
  bottom: -180px;
  background: rgba(46, 49, 146, 0.38);
}

/* Header */
.cloud-feature-header {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 30px;
}

.cloud-feature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--cloud-feature-accent);
  font-size: 12px;
  font-weight: 950;
}

.cloud-feature-kicker::before,
.cloud-feature-kicker::after {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--gradient-main);
}

.cloud-feature-header h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(28px, 2.7vw, 38px);
  font-weight: 950;
  line-height: 1.45;
}

.cloud-feature-header p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.9;
}

/* Main layout */
.cloud-feature-orbit-layout {
  position: relative;
  z-index: 2;

  max-width: 1120px;
  min-height: 440px;
  margin: 0 auto;
  padding: 28px;

  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  grid-template-rows: repeat(4, minmax(82px, auto));
  gap: 14px 22px;
  align-items: center;

  border-radius: 34px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(27, 255, 255, 0.12),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(255, 255, 255, 0.035);

  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 30px 84px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Decorative orbit lines */
.cloud-feature-orbit-layout::before,
.cloud-feature-orbit-layout::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cloud-feature-orbit-layout::before {
  width: 430px;
  height: 430px;
  border: 1px dashed rgba(27, 255, 255, 0.18);
}

.cloud-feature-orbit-layout::after {
  width: 270px;
  height: 270px;
  border: 1px dashed rgba(255, 255, 255, 0.11);
}

.cloud-feature-core {
  position: relative;
  z-index: 5;
  grid-column: 2;
  grid-row: 1 / 5;

  width: 220px;
  height: 220px;
  margin: 0 auto;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at 35% 28%,
      rgba(27, 255, 255, 0.28),
      transparent 38%
    ),
    rgba(8, 16, 39, 0.92);

  border: 1px solid rgba(27, 255, 255, 0.22);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    0 0 0 14px rgba(27, 255, 255, 0.035);
}

.cloud-core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(27, 255, 255, 0.2);
  animation: cloudCorePulse 2.8s ease-in-out infinite;
}

.cloud-core-ring.ring-one {
  inset: -18px;
}

.cloud-core-ring.ring-two {
  inset: -36px;
  animation-delay: 0.45s;
}

.cloud-core-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cloud-core-content span {
  display: block;
  color: var(--cloud-feature-accent);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.cloud-core-content strong {
  display: block;
  margin: 8px 0;
  color: #ffffff;
  font-size: 25px;
  font-weight: 950;
}

.cloud-core-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12.5px;
  font-weight: 800;
}

@keyframes cloudCorePulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.62;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.18;
  }
}

/* Feature Cards */
.cloud-feature-chip {
  position: relative;
  z-index: 4;

  min-height: 82px;
  padding: 13px 14px;
  border-radius: 22px;

  display: flex;
  align-items: center;
  gap: 11px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.105),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(255, 255, 255, 0.045);

  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease;
}

.cloud-feature-chip::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(27, 255, 255, 0.3),
    transparent 42%,
    rgba(46, 49, 146, 0.28)
  );
  transition: opacity 0.28s ease;
}

.cloud-feature-chip:hover {
  transform: translateY(-6px);
  border-color: rgba(27, 255, 255, 0.32);
  background: rgba(27, 255, 255, 0.09);
  box-shadow:
    0 28px 66px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(27, 255, 255, 0.08);
}

.cloud-feature-chip:hover::before {
  opacity: 1;
}

.feature-chip-icon {
  position: relative;
  z-index: 2;

  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #07112b;
  background: var(--gradient-main);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(27, 255, 255, 0.18);
}

.cloud-feature-chip div {
  position: relative;
  z-index: 2;
}

.cloud-feature-chip strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
}

.cloud-feature-chip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12.4px;
  line-height: 1.65;
}

/* Grid positions - no overlap */
.cloud-feature-chip.chip-1 {
  grid-column: 3;
  grid-row: 1;
}

.cloud-feature-chip.chip-2 {
  grid-column: 1;
  grid-row: 1;
}

.cloud-feature-chip.chip-3 {
  grid-column: 3;
  grid-row: 2;
}

.cloud-feature-chip.chip-4 {
  grid-column: 1;
  grid-row: 2;
}

.cloud-feature-chip.chip-5 {
  grid-column: 3;
  grid-row: 3;
}

.cloud-feature-chip.chip-6 {
  grid-column: 1;
  grid-row: 3;
}

.cloud-feature-chip.chip-7 {
  grid-column: 3;
  grid-row: 4;
}

.cloud-feature-chip.chip-8 {
  grid-column: 1;
  grid-row: 4;
}

/* Light Mode */
body:not(.dark-mode) .cloud-feature-orbit-section {
  --cloud-feature-accent: var(--primary-color);

  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(27, 255, 255, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(46, 49, 146, 0.14),
      transparent 38%
    ),
    linear-gradient(135deg, #eef5ff 0%, #ffffff 52%, #f7f9fc 100%);
}

body:not(.dark-mode) .cloud-feature-orbit-section::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(238, 245, 255, 0.52) 45%,
    rgba(255, 255, 255, 0) 100%
  );
}

body:not(.dark-mode) .cloud-feature-header h2,
body:not(.dark-mode) .cloud-feature-chip strong,
body:not(.dark-mode) .cloud-core-content strong {
  color: #1c2855;
}

body:not(.dark-mode) .cloud-feature-header p,
body:not(.dark-mode) .cloud-feature-chip p,
body:not(.dark-mode) .cloud-core-content p {
  color: #5f6b7a;
}

body:not(.dark-mode) .cloud-feature-orbit-layout,
body:not(.dark-mode) .cloud-feature-chip {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.7)
    ),
    rgba(255, 255, 255, 0.84);
  border-color: #e8edf5;
  box-shadow: 0 26px 72px rgba(28, 40, 85, 0.11);
}

body:not(.dark-mode) .cloud-feature-core {
  background:
    radial-gradient(
      circle at 35% 28%,
      rgba(27, 255, 255, 0.2),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.96);
  border-color: #e8edf5;
}

/* Responsive */
@media (max-width: 991px) {
  .cloud-feature-orbit-section {
    min-height: auto;
    padding: 64px 0 74px;
  }

  .cloud-feature-header {
    margin-bottom: 28px;
  }

  .cloud-feature-header h2 {
    font-size: 32px;
  }

  .cloud-feature-orbit-layout {
    min-height: auto;
    padding: 24px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .cloud-feature-orbit-layout::before,
  .cloud-feature-orbit-layout::after {
    display: none;
  }

  .cloud-feature-core {
    grid-column: 1 / -1;
    grid-row: auto;
    width: auto;
    height: auto;
    min-height: 150px;
    border-radius: 28px;
  }

  .cloud-core-ring {
    display: none;
  }

  .cloud-feature-chip,
  .cloud-feature-chip.chip-1,
  .cloud-feature-chip.chip-2,
  .cloud-feature-chip.chip-3,
  .cloud-feature-chip.chip-4,
  .cloud-feature-chip.chip-5,
  .cloud-feature-chip.chip-6,
  .cloud-feature-chip.chip-7,
  .cloud-feature-chip.chip-8 {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .cloud-feature-orbit-section {
    padding: 54px 0 62px;
  }

  .cloud-feature-header h2 {
    font-size: 27px;
    line-height: 1.55;
  }

  .cloud-feature-header p {
    font-size: 14px;
  }

  .cloud-feature-orbit-layout {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 26px;
  }

  .cloud-feature-core {
    min-height: 136px;
  }

  .cloud-core-content strong {
    font-size: 22px;
  }

  .cloud-feature-chip {
    border-radius: 20px;
  }
}

/* ======================================================
   PAGE: CLOUD PHONE FEATURES OVERVIEW SECTION END
====================================================== */
/* ======================================================
   PAGE: CLOUD PHONE PRICING SECTION START
====================================================== */

.cloud-pricing-section {
  position: relative;
  min-height: calc(100vh - 124px);
  padding: 34px 0 30px;
  overflow: hidden;

  --cloud-feature-accent: var(--secondary-color);

  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(27, 255, 255, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 80%,
      rgba(46, 49, 146, 0.16),
      transparent 34%
    ),
    linear-gradient(135deg, #eef5ff 0%, #ffffff 52%, #f7f9fc 100%);
}

.cloud-pricing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

.cloud-pricing-orb.orb-one {
  width: 280px;
  height: 280px;
  top: -120px;
  left: -120px;
  background: rgba(27, 255, 255, 0.16);
}

.cloud-pricing-orb.orb-two {
  width: 340px;
  height: 340px;
  bottom: -160px;
  right: -120px;
  background: rgba(46, 49, 146, 0.13);
}

.cloud-pricing-header {
  max-width: 760px;
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
}

.cloud-pricing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--cloud-feature-accent);
  font-size: 13px;
  font-weight: 900;
}

.cloud-pricing-kicker::before,
.cloud-pricing-kicker::after {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--gradient-main);
}

.cloud-pricing-header h2 {
  margin: 0 0 8px;
  color: #1c2855;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 950;
  line-height: 1.45;
}

.cloud-pricing-header p {
  margin: 0 auto;
  max-width: 680px;
  color: #5f6b7a;
  font-size: 13px;
  line-height: 1.75;
}

.cloud-pricing-billing-switch-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.cloud-pricing-billing-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e6edf7;
  box-shadow: 0 14px 38px rgba(28, 40, 85, 0.1);
}

.billing-btn {
  border: none;
  background: transparent;
  color: #5a6480;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
}

.billing-btn.is-active {
  background: var(--gradient-main);
  color: #081027;
  box-shadow: 0 10px 24px rgba(27, 255, 255, 0.2);
}

.billing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(46, 49, 146, 0.1);
  color: var(--cloud-feature-accent);
  font-size: 10px;
  font-weight: 900;
}

.cloud-pricing-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.cloud-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 18px 17px 16px;
  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.82)
    ),
    rgba(255, 255, 255, 0.9);

  border: 1px solid #e7edf6;
  box-shadow:
    0 20px 54px rgba(28, 40, 85, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);

  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.cloud-price-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 28px 68px rgba(28, 40, 85, 0.16),
    0 0 0 1px rgba(27, 255, 255, 0.1);
}

.cloud-price-card.is-featured {
  border-color: rgba(46, 49, 146, 0.18);
  background:
    linear-gradient(
      180deg,
      rgba(46, 49, 146, 0.035),
      rgba(255, 255, 255, 0.96)
    ),
    rgba(255, 255, 255, 0.96);
  box-shadow:
    0 30px 80px rgba(46, 49, 146, 0.16),
    0 0 0 1px rgba(27, 255, 255, 0.1);
  transform: translateY(-8px);
}

.price-popular-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-main);
  color: #081027;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(27, 255, 255, 0.22);
}

.price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.price-plan-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(46, 49, 146, 0.2);
  color: var(--cloud-feature-accent);
  font-size: 12px;
  font-weight: 900;
  background: rgba(46, 49, 146, 0.04);
}

.price-plan-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
  color: #081027;
  font-size: 12px;
  font-weight: 950;
}

.cloud-price-card h3 {
  margin: 0 0 6px;
  color: #1c2855;
  font-size: 21px;
  font-weight: 950;
}

.price-card-desc {
  margin: 0 0 10px;
  color: #667389;
  font-size: 12.5px;
  line-height: 1.65;
  min-height: 40px;
}

.price-amount-wrap {
  margin-bottom: 18px;
}

.price-amount {
  color: #1c2855;
  font-size: 31px;
  font-weight: 950;
  line-height: 1;
}

.price-currency {
  display: block;
  margin-top: 8px;
  color: #6d7890;
  font-size: 12px;
  font-weight: 800;
}

.custom-price-text {
  font-size: 30px;
}

.price-feature-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 13px 0 0;
  border-top: 1px dashed #d8e1ef;
  flex-grow: 1;
}

.price-feature-list li {
  position: relative;
  padding-inline-start: 22px;
  margin-bottom: 7px;
  color: #25335d;
  font-size: 12.5px;
  line-height: 1.55;
}

.price-feature-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: 950;
}

.price-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-btn-main,
.price-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: all 0.3s ease;
}

.price-btn-main {
  background: var(--gradient-main);
  color: #081027;
  box-shadow: 0 12px 30px rgba(27, 255, 255, 0.18);
}

.price-btn-main:hover {
  color: #081027;
  transform: translateY(-2px);
}

.price-btn-secondary {
  border: 1px solid #dbe4f0;
  background: rgba(255, 255, 255, 0.75);
  color: var(--cloud-feature-accent);
}

.price-btn-secondary:hover {
  border-color: rgba(46, 49, 146, 0.22);
  color: var(--cloud-feature-accent);
}

.pricing-compare-trigger-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pricing-compare-trigger {
  border: 1px solid rgba(46, 49, 146, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: var(--cloud-feature-accent);
  border-radius: 18px;
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(28, 40, 85, 0.08);
}

.compare-trigger-icon {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.pricing-compare-trigger.is-open .compare-trigger-icon {
  transform: rotate(45deg);
}

.pricing-compare-panel {
  max-width: 1120px;
  margin: 18px auto 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.pricing-compare-panel.is-open {
  max-height: 800px;
}

.pricing-compare-table-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e5ecf6;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(28, 40, 85, 0.08);
}

.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 15px 12px;
  border-bottom: 1px solid #eef2f8;
  color: #25335d;
  font-size: 13px;
}

.pricing-compare-table th {
  background: rgba(46, 49, 146, 0.04);
  color: var(--cloud-feature-accent);
  font-weight: 900;
}

.pricing-compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* Dark Mode */
body.dark-mode .cloud-pricing-section {
  --cloud-feature-accent: var(--secondary-color);
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(27, 255, 255, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 80%,
      rgba(46, 49, 146, 0.22),
      transparent 34%
    ),
    linear-gradient(135deg, #07112b 0%, #0d1835 52%, #111d3a 100%);
}
body:not(.dark-mode) .cloud-pricing-section {
  --cloud-feature-accent: var(--primary-color);
}

body.dark-mode .cloud-pricing-header h2,
body.dark-mode .cloud-price-card h3,
body.dark-mode .price-amount,
body.dark-mode .price-feature-list li,
body.dark-mode .pricing-compare-table th,
body.dark-mode .pricing-compare-table td {
  color: #ffffff;
}

body.dark-mode .cloud-pricing-header p,
body.dark-mode .price-card-desc,
body.dark-mode .price-currency {
  color: rgba(255, 255, 255, 0.72);
}

body.dark-mode .cloud-pricing-billing-switch,
body.dark-mode .cloud-price-card,
body.dark-mode .pricing-compare-trigger,
body.dark-mode .pricing-compare-table-wrap {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
}

body.dark-mode .price-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

body.dark-mode .price-plan-tag {
  border-color: rgba(27, 255, 255, 0.2);
  color: var(--cloud-feature-accent);
  background: rgba(27, 255, 255, 0.06);
}

body.dark-mode .pricing-compare-table th {
  background: rgba(255, 255, 255, 0.04);
}
body.dark-mode .pricing-compare-trigger {
  color: var(--cloud-feature-accent);
  border-color: rgba(27, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

body.dark-mode .pricing-compare-trigger:hover {
  background: rgba(27, 255, 255, 0.08);
  border-color: rgba(27, 255, 255, 0.34);
}
body.dark-mode .pricing-compare-table th {
  color: var(--cloud-feature-accent);
  background: rgba(27, 255, 255, 0.06);
}

body.dark-mode .pricing-compare-table td {
  color: rgba(255, 255, 255, 0.82);
}

/* Responsive */
@media (max-width: 1199px) {
  .cloud-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .cloud-pricing-section {
    min-height: auto;
    padding: 60px 0;
  }

  .cloud-pricing-grid {
    grid-template-columns: 1fr;
  }

  .cloud-price-card,
  .cloud-price-card.is-featured {
    min-height: auto;
    transform: none;
  }

  .pricing-compare-table-wrap {
    overflow-x: auto;
  }

  .pricing-compare-table {
    min-width: 720px;
  }
}

/* ======================================================
   PAGE: CLOUD PHONE PRICING SECTION END
====================================================== */
/* ======================================================
   PAGE: CLOUD PHONE PRICING MODAL START
====================================================== */

.pricing-modal-overlay {
  --pricing-modal-accent: var(--secondary-color);

  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.pricing-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pricing-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(27, 255, 255, 0.14),
      transparent 32%
    ),
    rgba(4, 9, 24, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.pricing-modal-dialog {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);
  max-height: min(860px, calc(100vh - 48px));

  display: flex;
  flex-direction: column;

  border-radius: 32px;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.095),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(8, 16, 39, 0.96);

  border: 1px solid rgba(255, 255, 255, 0.13);

  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  transform: translateY(18px) scale(0.97);
  transition: transform 0.28s ease;
}

.pricing-modal-overlay.is-open .pricing-modal-dialog {
  transform: translateY(0) scale(1);
}

.pricing-modal-close-btn {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 15px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;

  font-size: 30px;
  line-height: 1;
  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.pricing-modal-close-btn:hover {
  background: var(--pricing-modal-accent);
  color: #07112b;
  transform: rotate(90deg);
}

.pricing-modal-header {
  padding: 34px 76px 20px 34px;
  text-align: right;
}

.pricing-modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 10px;

  color: var(--pricing-modal-accent);
  font-size: 13px;
  font-weight: 950;
}

.pricing-modal-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--gradient-main);
}

.pricing-modal-header h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 950;
  line-height: 1.45;
}

.pricing-modal-header p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.9;
}

.pricing-modal-table-wrap {
  flex: 1;
  min-height: 0;
  overflow: auto;

  margin: 0 24px;
  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
}
.pricing-modal-table-scale {
  width: 100%;
}

.pricing-modal-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  text-align: center;
}

.pricing-modal-table th,
.pricing-modal-table td {
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.7;
  vertical-align: middle;
}

.pricing-modal-table th {
  position: sticky;
  top: 0;
  z-index: 3;

  color: #ffffff;
  font-size: 13px;
  font-weight: 950;

  background:
    linear-gradient(135deg, rgba(27, 255, 255, 0.1), rgba(46, 49, 146, 0.16)),
    rgba(10, 20, 48, 0.96);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pricing-modal-table td:first-child,
.pricing-modal-table th:first-child {
  text-align: right;
  font-weight: 950;
  color: #ffffff;
  min-width: 210px;
}
/* English / LTR pricing modal first column alignment */
html[dir="ltr"] .pricing-modal-table td:first-child,
html[dir="ltr"] .pricing-modal-table th:first-child {
  text-align: left;
}

.pricing-modal-table .is-highlighted {
  background: rgba(27, 255, 255, 0.055);
}

.pricing-modal-table th.is-highlighted {
  color: var(--pricing-modal-accent);
  background:
    linear-gradient(135deg, rgba(27, 255, 255, 0.15), rgba(46, 49, 146, 0.16)),
    rgba(10, 20, 48, 0.98);
}

.pricing-modal-table .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;
  border-radius: 50%;

  color: #07112b;
  background: var(--gradient-main);

  font-size: 14px;
  font-weight: 950;
}

.pricing-modal-table .dash {
  color: rgba(255, 255, 255, 0.38);
  font-size: 18px;
  font-weight: 950;
}

.pricing-modal-footer {
  padding: 18px 24px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.pricing-modal-footer p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.8;
}

.pricing-modal-cta {
  min-width: 150px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #07112b;
  background: var(--gradient-main);

  font-size: 14px;
  font-weight: 950;
  text-decoration: none;

  box-shadow: 0 16px 38px rgba(27, 255, 255, 0.18);

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.pricing-modal-cta:hover {
  color: #07112b;
  transform: translateY(-3px);
  filter: brightness(1.06);
}

/* prevent body scroll when modal open */
body.pricing-modal-opened {
  overflow: hidden;
}

/* Light Mode */
body:not(.dark-mode) .pricing-modal-overlay {
  --pricing-modal-accent: var(--primary-color);
}

body:not(.dark-mode) .pricing-modal-backdrop {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(27, 255, 255, 0.18),
      transparent 32%
    ),
    rgba(238, 245, 255, 0.72);
}

body:not(.dark-mode) .pricing-modal-dialog {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 255, 255, 0.78)
    ),
    rgba(255, 255, 255, 0.92);

  border-color: #e8edf5;
  box-shadow: 0 38px 110px rgba(28, 40, 85, 0.2);
}

body:not(.dark-mode) .pricing-modal-close-btn {
  background: rgba(46, 49, 146, 0.06);
  color: #1c2855;
}

body:not(.dark-mode) .pricing-modal-header h2,
body:not(.dark-mode) .pricing-modal-table td:first-child,
body:not(.dark-mode) .pricing-modal-table th:first-child {
  color: #1c2855;
}

body:not(.dark-mode) .pricing-modal-header p,
body:not(.dark-mode) .pricing-modal-footer p {
  color: #5f6b7a;
}

body:not(.dark-mode) .pricing-modal-table-wrap {
  border-color: #e8edf5;
  background: rgba(255, 255, 255, 0.82);
}

body:not(.dark-mode) .pricing-modal-table th {
  color: #1c2855;
  background:
    linear-gradient(135deg, rgba(27, 255, 255, 0.12), rgba(46, 49, 146, 0.06)),
    rgba(255, 255, 255, 0.96);
}

body:not(.dark-mode) .pricing-modal-table td {
  color: #4f5d73;
  border-bottom-color: #edf1f8;
}

body:not(.dark-mode) .pricing-modal-table .is-highlighted {
  background: rgba(46, 49, 146, 0.035);
}

body:not(.dark-mode) .pricing-modal-table th.is-highlighted {
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 767px) {
  .pricing-modal-overlay {
    padding: 12px;
  }

  .pricing-modal-dialog {
    max-height: calc(100vh - 24px);
    border-radius: 24px;
  }

  .pricing-modal-header {
    padding: 68px 18px 18px;
  }

  .pricing-modal-header h2 {
    font-size: 24px;
  }

  .pricing-modal-table-wrap {
    margin: 0 10px;
    border-radius: 18px;

    overflow-x: hidden;
    overflow-y: auto;
  }
  .pricing-modal-footer {
    padding: 12px 12px 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .pricing-modal-footer p {
    font-size: 12px;
    line-height: 1.65;
  }

  .pricing-modal-cta {
    width: 100%;
    min-height: 44px;
  }
  /* Mobile table: no horizontal scroll, no fake scale spacing */
  .pricing-modal-dialog {
    overflow-y: auto;
  }

  .pricing-modal-table-wrap {
    flex: 0 0 auto;
    margin: 0 10px;
    border-radius: 18px;

    overflow: visible;
    max-height: none;
  }

  .pricing-modal-table-scale {
    width: 100%;
    transform: none;
    margin-bottom: 0;
  }

  .pricing-modal-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }

  .pricing-modal-table th,
  .pricing-modal-table td {
    padding: 7px 4px;
    font-size: 8.8px;
    line-height: 1.45;
    white-space: normal;
    word-break: break-word;
  }

  .pricing-modal-table th {
    position: static;
  }

  .pricing-modal-table td:first-child,
  .pricing-modal-table th:first-child {
    width: 25%;
    min-width: 0;
    text-align: right;
  }

  @media (max-width: 767px) {
    html[dir="ltr"] .pricing-modal-table td:first-child,
    html[dir="ltr"] .pricing-modal-table th:first-child {
      text-align: left;
    }
  }

  .pricing-modal-table th:not(:first-child),
  .pricing-modal-table td:not(:first-child) {
    width: 18.75%;
  }

  .pricing-modal-table .check {
    width: 17px;
    height: 17px;
    font-size: 10px;
  }

  .pricing-modal-table .dash {
    font-size: 12px;
  }
}
@media (max-width: 390px) {
  .pricing-modal-table th,
  .pricing-modal-table td {
    padding: 6px 3px;
    font-size: 8px;
    line-height: 1.4;
  }

  .pricing-modal-table .check {
    width: 15px;
    height: 15px;
    font-size: 9px;
  }
}
/* ======================================================
   PAGE: CLOUD PHONE PRICING MODAL END
====================================================== */
/* ======================================================
   PAGE: CLOUD PHONE PRE-PURCHASE CHECKLIST SECTION START
====================================================== */
.cloud-checklist-section {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
}

.cloud-checklist-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
}

.cloud-checklist-bg-orb.orb-1 {
  width: 280px;
  height: 280px;
  right: -70px;
  top: 40px;
  background: var(--secondary-color);
}

.cloud-checklist-bg-orb.orb-2 {
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: 20px;
  background: var(--primary-color);
}

.cloud-checklist-shell {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(46, 49, 146, 0.08);
  border-radius: 34px;
  padding: 40px 34px;
  box-shadow: 0 20px 60px rgba(31, 45, 92, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cloud-checklist-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 900;
}

.cloud-checklist-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--gradient-main);
}

.cloud-checklist-intro h2 {
  margin: 0 0 18px;
  color: var(--primary-color);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.35;
  font-weight: 950;
}

.cloud-checklist-intro h2 span {
  color: var(--secondary-color);
}

.cloud-checklist-intro p {
  margin: 0 0 24px;
  color: #5e6985;
  font-size: 15px;
  line-height: 2;
}

.cloud-checklist-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px 18px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(27, 255, 255, 0.08),
    rgba(46, 49, 146, 0.07)
  );
  border: 1px solid rgba(46, 49, 146, 0.08);
}

.checklist-highlight-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
  color: #07112b;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(27, 255, 255, 0.16);
}

.checklist-highlight-text strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 900;
}

.checklist-highlight-text span {
  color: #63708c;
  font-size: 13px;
  line-height: 1.9;
}

.cloud-checklist-btn {
  min-width: 220px;
  min-height: 52px;
}

.cloud-checklist-board {
  position: relative;
}

.cloud-checklist-board::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at center,
      rgba(27, 255, 255, 0.08),
      transparent 60%
    ),
    linear-gradient(135deg, rgba(46, 49, 146, 0.03), rgba(27, 255, 255, 0.04));
  filter: blur(0px);
  z-index: 0;
}

.cloud-checklist-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.cloud-check-card {
  position: relative;
  min-height: 190px;
  padding: 22px 20px 20px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(46, 49, 146, 0.08);
  box-shadow:
    0 18px 38px rgba(30, 45, 84, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.cloud-check-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--gradient-main);
  opacity: 0.95;
}

.cloud-check-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 48px rgba(30, 45, 84, 0.12),
    0 0 0 1px rgba(27, 255, 255, 0.06);
  border-color: rgba(27, 255, 255, 0.2);
}

.cloud-check-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cloud-check-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(27, 255, 255, 0.12),
    rgba(46, 49, 146, 0.12)
  );
  font-size: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.cloud-check-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 14px;
  background: rgba(46, 49, 146, 0.06);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 900;
}

.cloud-check-card h3 {
  margin: 0 0 10px;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
}

.cloud-check-card p {
  margin: 0;
  color: #647089;
  font-size: 13px;
  line-height: 1.9;
}

.card-lg {
  grid-column: span 6;
}

.card-md {
  grid-column: span 6;
}

/* reveal animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dark Mode */
body.dark-mode .cloud-checklist-shell {
  background: rgba(8, 16, 39, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

body.dark-mode .cloud-checklist-intro h2,
body.dark-mode .cloud-check-card h3,
body.dark-mode .checklist-highlight-text strong {
  color: #ffffff;
}

body.dark-mode .cloud-checklist-kicker {
  color: var(--secondary-color);
}

body.dark-mode .cloud-checklist-intro p,
body.dark-mode .cloud-check-card p,
body.dark-mode .checklist-highlight-text span {
  color: rgba(255, 255, 255, 0.72);
}

body.dark-mode .cloud-check-card {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.dark-mode .cloud-check-card:hover {
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(27, 255, 255, 0.08);
}

body.dark-mode .cloud-check-number {
  background: rgba(255, 255, 255, 0.06);
  color: var(--secondary-color);
}

body.dark-mode .cloud-check-icon {
  background: linear-gradient(
    135deg,
    rgba(27, 255, 255, 0.12),
    rgba(46, 49, 146, 0.22)
  );
}

body.dark-mode .cloud-checklist-highlight {
  background: linear-gradient(
    135deg,
    rgba(27, 255, 255, 0.08),
    rgba(46, 49, 146, 0.12)
  );
  border-color: rgba(255, 255, 255, 0.08);
}

/* Responsive */
@media (min-width: 1200px) {
  .cloud-checklist-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 1199px) {
  .cloud-checklist-shell {
    padding: 34px 24px;
  }
}

@media (max-width: 991px) {
  .cloud-checklist-section {
    padding: 70px 0 80px;
  }

  .cloud-checklist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-lg,
  .card-md {
    grid-column: span 1;
  }

  .cloud-check-card {
    min-height: 210px;
  }
}

@media (max-width: 767px) {
  .cloud-checklist-section {
    padding: 55px 0 65px;
  }

  .cloud-checklist-shell {
    border-radius: 24px;
    padding: 24px 16px;
  }

  .cloud-checklist-intro h2 {
    font-size: 32px;
    line-height: 1.45;
  }

  .cloud-checklist-intro p {
    font-size: 14px;
    line-height: 1.95;
  }

  .cloud-checklist-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cloud-check-card {
    min-height: auto;
    padding: 18px 16px 18px;
    border-radius: 20px;
  }

  .cloud-check-card h3 {
    font-size: 16px;
  }

  .cloud-check-card p {
    font-size: 12.5px;
    line-height: 1.85;
  }

  .cloud-checklist-btn {
    width: 100%;
  }
}
/* ======================================================
   PAGE: CLOUD PHONE PRE-PURCHASE CHECKLIST SECTION END
====================================================== */
/* ======================================================
   PAGE: CLOUD PHONE FAQ & CONSULTATION SECTION START
====================================================== */

.cloud-faq-consult-section {
  --cloud-faq-accent: var(--secondary-color);

  position: relative;
  padding: 64px 0 72px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(27, 255, 255, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(46, 49, 146, 0.24),
      transparent 38%
    ),
    linear-gradient(135deg, #07112b 0%, #0d1835 52%, #111d3a 100%);
}

.cloud-faq-consult-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.cloud-faq-consult-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

.cloud-faq-consult-orb.orb-one {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -120px;
  background: rgba(27, 255, 255, 0.16);
}

.cloud-faq-consult-orb.orb-two {
  width: 390px;
  height: 390px;
  left: -160px;
  bottom: -190px;
  background: rgba(46, 49, 146, 0.4);
}

.cloud-faq-consult-header {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 30px;
}

.cloud-faq-consult-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--cloud-faq-accent);
  font-size: 13px;
  font-weight: 950;
}

.cloud-faq-consult-kicker::before,
.cloud-faq-consult-kicker::after {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--gradient-main);
}

.cloud-faq-consult-header h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(28px, 2.7vw, 40px);
  font-weight: 950;
  line-height: 1.45;
}

.cloud-faq-consult-header p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.9;
}

.cloud-faq-consult-shell {
  position: relative;
  z-index: 2;
  padding: 26px;
  border-radius: 34px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.028)
    ),
    rgba(255, 255, 255, 0.035);

  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 34px 95px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* FAQ Panel */
.cloud-faq-panel,
.cloud-consult-form-card {
  height: 100%;
  border-radius: 28px;
  padding: 26px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.105),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(255, 255, 255, 0.045);

  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cloud-faq-panel-heading {
  margin-bottom: 18px;
}

.cloud-faq-panel-heading span,
.cloud-consult-form-heading span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--cloud-faq-accent);
  font-size: 13px;
  font-weight: 950;
}

.cloud-faq-panel-heading h3,
.cloud-consult-form-heading h3 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.55;
  font-weight: 950;
}

.cloud-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cloud-faq-item {
  border-radius: 20px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);

  transition:
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.cloud-faq-item.is-open {
  border-color: rgba(27, 255, 255, 0.26);
  background: rgba(27, 255, 255, 0.065);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.cloud-faq-question {
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;

  border: none;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  color: #ffffff;
  text-align: right;
  cursor: pointer;
}

.cloud-faq-question span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.8;
}

.cloud-faq-question strong {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;

  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #07112b;
  background: var(--gradient-main);

  font-size: 18px;
  font-weight: 950;
}

.cloud-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.cloud-faq-item.is-open .cloud-faq-answer {
  max-height: 240px;
}

.cloud-faq-answer p {
  margin: 0;
  padding: 0 16px 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13.5px;
  line-height: 1.9;
}

.cloud-faq-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 22px;

  display: flex;
  align-items: flex-start;
  gap: 12px;

  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.cloud-faq-note span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;

  border-radius: 13px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--gradient-main);
  color: #07112b;

  font-size: 18px;
  font-weight: 950;
}

.cloud-faq-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.8;
}

/* Form */
.cloud-consult-form-heading {
  margin-bottom: 18px;
}

.cloud-consult-form-heading p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13.5px;
  line-height: 1.9;
}

.cloud-consult-form label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12.5px;
  font-weight: 900;
}

.cloud-consult-form label span {
  color: var(--cloud-faq-accent);
}

.cloud-consult-form input,
.cloud-consult-form select,
.cloud-consult-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;

  border-radius: 16px;
  outline: none;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.065);

  border: 1px solid rgba(255, 255, 255, 0.12);

  font-size: 13px;
  font-weight: 800;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.cloud-consult-form textarea {
  min-height: 104px;
  resize: vertical;
}

.cloud-consult-form input::placeholder,
.cloud-consult-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cloud-consult-form input:focus,
.cloud-consult-form select:focus,
.cloud-consult-form textarea:focus {
  border-color: rgba(27, 255, 255, 0.36);
  background: rgba(27, 255, 255, 0.055);
  box-shadow: 0 0 0 4px rgba(27, 255, 255, 0.08);
}

.cloud-consult-form select option {
  color: #1c2855;
}

.cloud-consult-form .ltr-input {
  direction: ltr;
  text-align: left;
}

.cloud-consult-submit {
  width: 100%;
  min-height: 52px;

  border: none;
  border-radius: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #07112b;
  background: var(--gradient-main);

  font-size: 14px;
  font-weight: 950;

  box-shadow: 0 16px 38px rgba(27, 255, 255, 0.18);

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.cloud-consult-submit:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.cloud-consult-trust {
  margin-top: 16px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cloud-consult-trust div {
  padding: 13px 14px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.cloud-consult-trust strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.cloud-consult-trust span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

/* Light Mode */
body:not(.dark-mode) .cloud-faq-consult-section {
  --cloud-faq-accent: var(--primary-color);

  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(27, 255, 255, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(46, 49, 146, 0.12),
      transparent 38%
    ),
    linear-gradient(135deg, #eef5ff 0%, #ffffff 52%, #f7f9fc 100%);
}

body:not(.dark-mode) .cloud-faq-consult-header h2,
body:not(.dark-mode) .cloud-faq-panel-heading h3,
body:not(.dark-mode) .cloud-consult-form-heading h3,
body:not(.dark-mode) .cloud-faq-question,
body:not(.dark-mode) .cloud-consult-trust strong {
  color: #1c2855;
}

body:not(.dark-mode) .cloud-faq-consult-header p,
body:not(.dark-mode) .cloud-consult-form-heading p,
body:not(.dark-mode) .cloud-faq-answer p,
body:not(.dark-mode) .cloud-faq-note p,
body:not(.dark-mode) .cloud-consult-trust span {
  color: #5f6b7a;
}

body:not(.dark-mode) .cloud-faq-consult-shell,
body:not(.dark-mode) .cloud-faq-panel,
body:not(.dark-mode) .cloud-consult-form-card,
body:not(.dark-mode) .cloud-faq-item,
body:not(.dark-mode) .cloud-faq-note,
body:not(.dark-mode) .cloud-consult-trust div {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.72)
    ),
    rgba(255, 255, 255, 0.84);

  border-color: #e8edf5;
  box-shadow: 0 26px 72px rgba(28, 40, 85, 0.1);
}

body:not(.dark-mode) .cloud-faq-item.is-open {
  background: rgba(27, 255, 255, 0.075);
  border-color: rgba(46, 49, 146, 0.14);
}

body:not(.dark-mode) .cloud-consult-form label {
  color: #25335d;
}

body:not(.dark-mode) .cloud-consult-form input,
body:not(.dark-mode) .cloud-consult-form select,
body:not(.dark-mode) .cloud-consult-form textarea {
  color: #1c2855;
  background: rgba(255, 255, 255, 0.86);
  border-color: #dfe7f3;
}

body:not(.dark-mode) .cloud-consult-form input::placeholder,
body:not(.dark-mode) .cloud-consult-form textarea::placeholder {
  color: #98a3b5;
}

/* Responsive */
@media (min-width: 1200px) {
  .cloud-faq-consult-section {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
  }
}

@media (max-width: 1199px) {
  .cloud-faq-consult-section {
    padding: 62px 0 70px;
  }

  .cloud-faq-consult-shell {
    padding: 22px;
  }
}

@media (max-width: 991px) {
  .cloud-faq-consult-section {
    min-height: auto;
    padding: 64px 0 74px;
  }

  .cloud-faq-panel,
  .cloud-consult-form-card {
    padding: 22px;
  }
}

@media (max-width: 575px) {
  .cloud-faq-consult-section {
    padding: 52px 0 62px;
  }

  .cloud-faq-consult-header h2 {
    font-size: 27px;
    line-height: 1.55;
  }

  .cloud-faq-consult-header p {
    font-size: 13.5px;
  }

  .cloud-faq-consult-shell {
    padding: 14px;
    border-radius: 26px;
  }

  .cloud-faq-panel,
  .cloud-consult-form-card {
    padding: 18px;
    border-radius: 22px;
  }

  .cloud-faq-panel-heading h3,
  .cloud-consult-form-heading h3 {
    font-size: 20px;
  }

  .cloud-faq-question {
    min-height: 54px;
    padding: 12px 13px;
  }

  .cloud-faq-question span {
    font-size: 13px;
  }

  .cloud-faq-answer p {
    font-size: 12.8px;
  }

  .cloud-consult-trust {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   PAGE: CLOUD PHONE FAQ & CONSULTATION SECTION END
====================================================== */
