/* Crown Peakhealth - Light Gold Theme CSS */
:root {
  --cph-gold: #d6a642;
  --cph-gold-dark: #b8841f;
  --cph-gold-soft: #fff2cc;
  --cph-ink: #1f1606;
}

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

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #fffaf0;
  color: #1f1606;
}

.cph-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* HEADER */
.cph-header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(31, 22, 6, 0.08);
}

.cph-navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cph-logo img {
  width: 175px;
  max-height: 62px;
  object-fit: contain;
  display: block;
}

.cph-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.cph-menu a {
  text-decoration: none;
  color: #241a08;
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.cph-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  background: #d6a642;
  border-radius: 20px;
  transition: .3s;
}

.cph-menu a:hover,
.cph-menu a.active {
  color: #d6a642;
}

.cph-menu a:hover::after,
.cph-menu a.active::after {
  width: 100%;
}

.cph-nav-btn {
  text-decoration: none;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #fff;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(214, 166, 66, .28);
}

/* MOBILE MENU */
.cph-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: #d6a642;
  cursor: pointer;
  padding: 11px;
}

.cph-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 20px;
  margin: 5px 0;
}

/* HERO */
.cph-hero {
  width: min(1180px, 92%);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 45px;
  min-height: calc(100vh - 140px);
}

.cph-trust-badge {
      display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    background: #fff3d6;
    color: #b8841f;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.cph-btn-icon {
  width: 21px;
  height: 21px;
}

.cph-trust-badge span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #c9932b;
  color: #fff;
  display: grid;
  place-items: center;
}

.cph-hero-left h1 {
  margin-top: 24px;
  font-size: 55px;
  line-height: 1.08;
  letter-spacing: -2px;
  color: #1f1606;
  font-weight: 800;
}

.cph-hero-left h1 span {
  color: #b8841f;
}

.cph-hero-left > p {
  margin-top: 22px;
  max-width: 560px;
  color: #5a4a2b;
  font-size: 18px;
  line-height: 1.65;
}

.cph-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.cph-primary-btn,
.cph-secondary-btn {
  height: 56px;
  padding: 0 24px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.cph-primary-btn {
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #fff;
  box-shadow: 0 14px 28px rgba(184, 132, 31, .26);
}

.cph-secondary-btn {
  background: #fff;
  color: #b8841f;
  border: 2px solid #f0d690;
}

/* FEATURES */
.cph-features {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cph-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(91, 63, 10, 0.08);
  border: 1px solid rgba(214, 166, 66, 0.18);
}

.cph-feature-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #fff2cc;
  color: #b8841f;
  display: grid;
  place-items: center;
  font-size: 17px;
}

.cph-feature h4 {
  font-size: 14px;
  color: #07142f;
  margin: 0;
  white-space: nowrap;
  font-weight: 700;
}

/* RIGHT SIDE */
.cph-hero-right {
  min-height: 610px;
  position: relative;
}

.cph-bg-circle {
  position: absolute;
  right: 20px;
  top: 30px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6df 0%, #f9e8b2 62%, transparent 63%);
  border: 2px solid rgba(214, 166, 66, .22);
}

.cph-dots {
  position: absolute;
  left: 20px;
  top: 65px;
  width: 130px;
  height: 90px;
  background-image: radial-gradient(#e7c46a 2px, transparent 2px);
  background-size: 20px 20px;
}

.cph-product-img {
  position: absolute;
  right: 10px;
  bottom: 180px;
  width: 620px;
  max-width: 100%;
  z-index: 3;
  filter: drop-shadow(0 28px 35px rgba(91, 63, 10, .16));
}

.cph-float-card {
  position: absolute;
  z-index: 4;
  background: rgba(255,255,255,.96);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(91, 63, 10, .14);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
}

.cph-card-top {
  right: 0;
  top: 80px;
  width: 270px;
}

.cph-card-bottom {
  left: 20px;
  bottom: 70px;
  width: 300px;
}

.cph-clock-icon,
.cph-medal-icon {
  min-width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #b8841f;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 800;
}

.cph-clock-icon {
  border: 5px solid #b8841f;
}

.cph-medal-icon {
  background: #b8841f;
  color: #fff;
  border: 6px solid #fff0bf;
}

.cph-float-card h3 {
  font-size: 24px;
  color: #b8841f;
}

.cph-float-card h4 {
  font-size: 14px;
  color: #07142f;
  margin-top: 4px;
}

.cph-float-card p {
  font-size: 12px;
  line-height: 1.4;
  color: #5a4a2b;
  margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cph-menu-toggle {
    display: block;
  }

  .cph-menu,
  .cph-nav-btn {
    display: none;
  }

  .cph-menu {
    position: absolute;
    top: 82px;
    left: 4%;
    right: 4%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(31,22,6,.14);
  }

  .cph-menu.show {
    display: flex;
  }

  .cph-menu li,
  .cph-menu a {
    width: 100%;
  }

  .cph-menu a {
    display: block;
    padding: 14px 10px;
  }

  .cph-menu a::after {
    display: none;
  }

  .cph-hero {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .cph-hero-right {
    min-height: 540px;
  }
}

@media (max-width: 600px) {
  .cph-logo img {
    width: 145px;
  }

  .cph-hero-left h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .cph-hero-left > p {
    font-size: 16px;
  }

  .cph-hero-actions {
    flex-direction: column;
  }

  .cph-primary-btn,
  .cph-secondary-btn {
    width: 100%;
  }

  .cph-features {
    gap: 10px;
  }
  .cph-feature {
    padding: 9px 12px;
  }

  .cph-feature h4 {
    font-size: 13px;
  }

  .cph-hero-right {
    min-height: 500px;
  }

  .cph-bg-circle {
    width: 360px;
    height: 360px;
    right: -90px;
  }

  .cph-product-img {
    width: 430px;
    right: -20px;
    bottom: 90px;
  }

  .cph-card-top,
  .cph-card-bottom {
    left: 0;
    right: 0;
    width: 100%;
  }

  .cph-card-top {
    top: auto;
    bottom: 15px;
  }

  .cph-card-bottom {
    display: none;
  }
}

.cph-care-section {
  padding: 90px 0;
  background:
    linear-gradient(135deg, #fff8e8 0%, #ffffff 45%, #fffaf0 100%);
  position: relative;
  overflow: hidden;
}

.cph-care-section::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  left: -180px;
  top: 80px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.10);
}

.cph-care-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(184, 132, 31, 0.10);
}

.cph-care-wrapper {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(214, 166, 66, 0.18);
  border-radius: 34px;
  padding: 54px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  box-shadow: 0 28px 70px rgba(91, 63, 10, 0.10);
}

.cph-care-tag {
  display: inline-block;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.cph-care-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  color: #1f1606;
  letter-spacing: -1.4px;
  margin-bottom: 18px;
}

.cph-care-left p {
  color: #66583a;
  font-size: 17px;
  line-height: 1.7;
  max-width: 470px;
  margin-bottom: 28px;
}

.cph-care-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #1f1606;
  color: #fff;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(31, 22, 6, 0.18);
}

.cph-care-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cph-care-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 14px 34px rgba(91, 63, 10, 0.08);
  transition: 0.3s ease;
}

.cph-care-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(91, 63, 10, 0.12);
}

.cph-care-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cph-care-card h3 {
  font-size: 19px;
  color: #1f1606;
  margin-bottom: 10px;
}

.cph-care-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #66583a;
}

@media (max-width: 900px) {
  .cph-care-wrapper {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }

  .cph-care-grid {
    grid-template-columns: 1fr;
  }
}


.cph-products-section {
  padding: 95px 0;
  background: #fffaf2;
}

.cph-products-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.cph-products-head span {
  display: inline-block;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.cph-products-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: #1f1606;
  letter-spacing: -1.4px;
  margin-bottom: 14px;
}

.cph-products-head p {
  font-size: 17px;
  color: #66583a;
  line-height: 1.6;
}

.cph-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cph-product-card {
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 16px 38px rgba(91, 63, 10, 0.08);
  transition: 0.3s ease;
}

.cph-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 55px rgba(91, 63, 10, 0.13);
}

.cph-product-card {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 14px 34px rgba(91, 63, 10, 0.08);
  text-align: left;
}

.cph-product-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
}

.cph-product-img-wrap img {
  max-width: 82%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.cph-product-card h3 {
  font-size: 17px;
  color: #1f1606;
  margin-bottom: 8px;
}

.cph-product-card p {
  font-size: 14px;
  color: #66583a;
  line-height: 1.55;
}

.cph-product-card h3 {
  font-size: 18px;
  color: #1f1606;
  margin-bottom: 9px;
}

.cph-product-card p {
  font-size: 14px;
  color: #66583a;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cph-product-card a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #b8841f;
  font-size: 14px;
  font-weight: 800;
}

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

@media (max-width: 600px) {
  .cph-products-section {
    padding: 70px 0;
  }

  .cph-products-grid {
    grid-template-columns: 1fr;
  }

}


.cph-help-section {
  padding: 95px 0;
  background: #ffffff;
}

.cph-help-box {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 58px;
  background:
    linear-gradient(135deg, rgba(31, 22, 6, 0.96), rgba(184, 132, 31, 0.90)),
    radial-gradient(circle at right top, rgba(255,255,255,.22), transparent 34%);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  box-shadow: 0 28px 70px rgba(91, 63, 10, 0.18);
}

.cph-help-box::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -130px;
  top: -130px;
  border-radius: 50%;
  background: rgba(255,255,255,.13);
}

.cph-help-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: 38%;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.cph-help-left,
.cph-help-right {
  position: relative;
  z-index: 2;
}

.cph-help-left span {
  display: inline-block;
  background: rgba(255,255,255,.14);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cph-help-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: -1.4px;
  margin-bottom: 18px;
}

.cph-help-left p {
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.7;
  max-width: 470px;
}

.cph-help-line {
  margin-top: 30px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}

.cph-help-line strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 5px;
}

.cph-help-line small {
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.cph-help-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cph-help-card {
  background: rgba(255,255,255,.94);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(31,22,6,.14);
  transition: .3s ease;
}

.cph-help-card:hover {
  transform: translateY(-6px);
}

.cph-help-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #fff2cc;
  color: #b8841f;
  display: grid;
  place-items: center;
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cph-help-card h3 {
  font-size: 19px;
  color: #1f1606;
  margin-bottom: 9px;
}

.cph-help-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #66583a;
}

@media (max-width: 900px) {
  .cph-help-box {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }

  .cph-help-right {
    grid-template-columns: 1fr;
  }
}

.cph-cta-section {
  padding: 95px 0;
  background: #ffffff;
}

.cph-cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  padding: 58px;
  background:
    radial-gradient(circle at 85% 25%, rgba(255,255,255,0.22), transparent 28%),
    linear-gradient(135deg, #1f1606 0%, #b8841f 100%);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 42px;
  box-shadow: 0 30px 80px rgba(91, 63, 10, 0.22);
}

.cph-cta-box::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -150px;
  top: -160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.cph-cta-box::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: 46%;
  bottom: -110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.cph-cta-content,
.cph-cta-panel {
  position: relative;
  z-index: 2;
}

.cph-cta-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cph-cta-content h2 {
  max-width: 680px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin-bottom: 18px;
}

.cph-cta-content p {
  max-width: 620px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.7;
}

.cph-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.cph-cta-primary,
.cph-cta-secondary {
  height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}

.cph-cta-primary {
  background: #ffffff;
  color: #b8841f;
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
}

.cph-cta-primary svg {
  width: 21px;
  height: 21px;
}

.cph-cta-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}

.cph-cta-panel {
  background: rgba(255,255,255,0.94);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(31,22,6,0.18);
}

.cph-cta-panel-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}

.cph-cta-panel h3 {
  font-size: 22px;
  color: #1f1606;
  margin-bottom: 10px;
}

.cph-cta-panel p {
  font-size: 15px;
  line-height: 1.7;
  color: #66583a;
  margin-bottom: 20px;
}

.cph-cta-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cph-cta-points span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff7df;
  color: #1f1606;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
}

.cph-cta-points span::before {
  content: "✓";
  color: #b8841f;
  font-weight: 900;
}

@media (max-width: 900px) {
  .cph-cta-box {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }

  .cph-cta-section {
    padding: 70px 0;
  }

  .cph-cta-primary,
  .cph-cta-secondary {
    width: 100%;
  }
}

.cph-footer {
  background: radial-gradient(circle at 85% 25%, rgba(255,255,255,0.22), transparent 28%),
    linear-gradient(135deg, #1f1606 0%, #b8841f 100%);
  padding: 70px 0 24px;
  color: #ffffff;
}

.cph-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 36px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.cph-footer-logo img {
  width: 175px;
  max-height: 65px;
  object-fit: contain;
  margin-bottom: 18px;
}

.cph-footer-brand p,
.cph-footer-contact p {
  max-width: 340px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.7;
}

.cph-footer-col h3 {
  font-size: 17px;
  margin-bottom: 18px;
  color: #ffffff;
}

.cph-footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.cph-footer-col a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.cph-footer-btn {
  margin-top: 18px;
  width: fit-content;
  background: #ffffff;
  color: #075fe8 !important;
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
}

.cph-footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cph-footer-bottom p,
.cph-footer-bottom a {
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  text-decoration: none;
}

.cph-footer-bottom div {
  display: flex;
  gap: 18px;
}

.cph-footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .cph-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cph-footer {
    padding-top: 55px;
  }

  .cph-footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cph-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cph-footer-bottom div {
    flex-direction: column;
    gap: 10px;
  }
}

.cph-contact-item {
  display: flex !important;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px !important;
  line-height: 1.5;
}

.cph-contact-item span {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 11px;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  display: grid;
  place-items: center;
}

.cph-contact-item svg {
  width: 17px;
  height: 17px;
}

.cph-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.cph-footer-social a {
  width: 38px;
  height: 38px;
  margin: 0 !important;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  display: grid !important;
  place-items: center;
  transition: 0.3s ease;
}

.cph-footer-social a:hover {
  background: #ffffff;
  color: #075fe8;
  transform: translateY(-3px);
}

.cph-footer-social svg {
  width: 18px;
  height: 18px;
}

.cph-feature-icon svg {
  width: 18px;
  height: 18px;
}

/* Mobile Hero Slider: Image Top, Text Bottom */
@media (max-width: 991px) {
  .cph-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 36px 0 45px;
    margin-top: 20px;
    text-align: center;
    gap: 22px;
  }

  .cph-hero-right {
    display: flex !important;
    order: 1;
    width: 100%;
    min-height: 300px;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .cph-hero-left {
    order: 2;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .cph-product-img {
    position: relative !important;
    inset: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 330px !important;
    height: 260px !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
    z-index: 3;
  }

  .cph-bg-circle {
    width: 280px;
    height: 280px;
    top: 10px;
    right: 50%;
    transform: translateX(50%);
  }

  .cph-dots {
    left: 16px;
    top: 22px;
  }

  .cph-float-card {
    display: none !important;
  }

  .cph-trust-badge {
    margin: 0 auto 18px;
  }

  .cph-hero-left h1 {
    margin-top: 18px;
  }

  .cph-hero-left p {
    max-width: 100%;
  }

  .cph-hero-actions,
  .cph-features {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .cph-hero {
    padding: 28px 0 42px;
    gap: 16px;
  }

  .cph-hero-right {
    min-height: 255px;
  }

  .cph-product-img {
    max-width: 270px !important;
    height: 220px !important;
  }

  .cph-bg-circle {
    width: 230px;
    height: 230px;
    top: 8px;
  }

  .cph-hero-left h1 {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .cph-hero-left > p {
    font-size: 15.5px;
  }

  .cph-hero-actions {
    flex-direction: column;
  }

  .cph-primary-btn,
  .cph-secondary-btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .cph-product-img {
    max-width: 235px !important;
    height: 200px !important;
  }

  .cph-hero-right {
    min-height: 230px;
  }
}


.cph-prime-product {
  position: relative;
  background: #fff;
  border-radius: 30px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(190, 140, 36, 0.22);
  box-shadow: 0 18px 45px rgba(105, 78, 19, 0.10);
  transition: 0.4s ease;
}

.cph-prime-product:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(105, 78, 19, 0.18);
}

.cph-prime-product-frame {
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 2px solid #d6a94a;
  pointer-events: none;
  opacity: 0.85;
}

.cph-prime-product-img {
  height: 255px;
  border-radius: 24px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.cph-prime-product-img img {
  width: 100%;
  height: 85%;
  object-fit: contain;
  background: #fff;
  mix-blend-mode: multiply;
  filter: brightness(1.04) contrast(1.08);
  transition: 0.4s ease;
}

.cph-prime-product:hover .cph-prime-product-img img {
  transform: scale(1.08) translateY(-7px);
}

.cph-prime-product-body {
  position: relative;
  margin-top: 8px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fffaf0, #ffffff);
  border: 1px solid rgba(214, 169, 74, 0.22);
}

.cph-prime-product-body span {
  color: #a97813;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cph-prime-product-body h3 {
  margin: 10px 0 18px;
  color: #151515;
  font-size: 21px;
  line-height: 1.25;
}

.cph-prime-product-btn {
  height: 48px;
  padding: 0 16px 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #cfa23e, #f6d675);
  color: #151515;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(207, 162, 62, 0.28);
}

.cph-prime-product-btn i {
  font-style: normal;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.cph-prime-product-btn:hover i {
  transform: translateX(4px);
}

.cph-contact-hero {
  position: relative;
  padding: 60px 0;
  background:
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  overflow: hidden;
}

.cph-contact-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  top: -190px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.12);
}

.cph-contact-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: -110px;
  border-radius: 50%;
  background: rgba(184, 132, 31, 0.10);
}

.cph-contact-hero-box {
  position: relative;
  z-index: 2;
  padding: 46px;
  border-radius: 34px;
  background:
    radial-gradient(circle at right top, rgba(214, 166, 66, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fff7df 100%);
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 24px 65px rgba(91, 63, 10, 0.10);
}

.cph-breadcrumb {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(91, 63, 10, 0.08);
  margin-bottom: 32px;
}

.cph-breadcrumb a,
.cph-breadcrumb p,
.cph-breadcrumb span {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.cph-breadcrumb a {
  color: #b8841f;
}

.cph-breadcrumb span {
  color: #9b8a68;
}

.cph-breadcrumb p {
  color: #1f1606;
  margin: 0;
}

.cph-contact-hero-main {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: end;
  gap: 40px;
}

.cph-contact-tag {
  display: inline-flex;
  width: fit-content;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.cph-contact-hero-text h1 {
  max-width: 680px;
  font-size: 55px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  color: #1f1606;
  margin-bottom: 18px;
}

.cph-contact-hero-text p {
  max-width: 650px;
  color: #66583a;
  font-size: 17px;
  line-height: 1.75;
}

.cph-contact-hero-mini {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 16px 38px rgba(91, 63, 10, 0.08);
}

.cph-mini-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  display: grid;
  place-items: center;
}

.cph-mini-icon svg {
  width: 24px;
  height: 24px;
}

.cph-contact-hero-mini strong {
  display: block;
  color: #1f1606;
  font-size: 16px;
  margin-bottom: 5px;
}

.cph-contact-hero-mini small {
  display: block;
  color: #66583a;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .cph-contact-hero-main {
      grid-template-columns: 1fr;
    }
    .cph-contact-hero-mini {
      display: none;
    }

}

@media (max-width: 600px) {
  .cph-contact-hero {
    padding: 38px 0;
  }

  .cph-contact-hero-box {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .cph-breadcrumb {
    margin-bottom: 26px;
  }

  .cph-contact-hero-text h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .cph-contact-hero-text p {
    font-size: 16px;
  }

  .cph-contact-hero-mini {
    align-items: flex-start;
  }
}

.cph-contact-info-section {
  padding: 80px 0;
  background: #fffaf0;
  overflow: hidden;
}

.cph-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cph-info-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 26px;
  padding: 28px 24px;
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 16px 38px rgba(91, 63, 10, 0.08);
  transition: 0.35s ease;
  animation: cphFadeUp 0.8s ease both;
  transform-style: preserve-3d;
  will-change: transform;
}

.cph-info-card:nth-child(2) {
  animation-delay: 0.12s;
}

.cph-info-card:nth-child(3) {
  animation-delay: 0.24s;
}

.cph-info-card:nth-child(4) {
  animation-delay: 0.36s;
}

.cph-info-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -52px;
  top: -52px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.10);
  transition: 0.35s ease;
}

.cph-info-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(214, 166, 66, 0.22),
    transparent 80%
  );
  opacity: 0;
  transform: translateX(-100%);
  transition: 0.6s ease;
  pointer-events: none;
}

.cph-info-card:hover {
  transform: translateY(-12px) scale(1.025);
  box-shadow: 0 30px 70px rgba(91, 63, 10, 0.18);
  border-color: rgba(184, 132, 31, 0.35);
}

.cph-info-card:hover::before {
  transform: scale(1.45);
  background: rgba(214, 166, 66, 0.16);
}

.cph-info-card:hover::after {
  opacity: 1;
  transform: translateX(100%);
}

.cph-info-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 14px 30px rgba(184, 132, 31, 0.22);
  animation: cphIconFloat 3s ease-in-out infinite;
}

.cph-info-card:nth-child(2) .cph-info-icon {
  animation-delay: 0.3s;
}

.cph-info-card:nth-child(3) .cph-info-icon {
  animation-delay: 0.6s;
}

.cph-info-card:nth-child(4) .cph-info-icon {
  animation-delay: 0.9s;
}

.cph-info-card:hover .cph-info-icon {
  animation: cphIconPop 0.55s ease both;
}

.cph-info-icon svg {
  width: 25px;
  height: 25px;
}

.cph-info-card span {
  position: relative;
  z-index: 2;
  display: block;
  color: #b8841f;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 9px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  transition: 0.3s ease;
}

.cph-info-card h3 {
  position: relative;
  z-index: 2;
  font-size: 18px;
  line-height: 1.35;
  color: #1f1606;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.cph-info-card h3 a {
  color: inherit;
  text-decoration: none;
}

.cph-info-card h3 a:hover {
  color: #b8841f;
}

.cph-info-card p {
  position: relative;
  z-index: 2;
  color: #66583a;
  font-size: 14px;
  line-height: 1.6;
  transition: 0.3s ease;
}

.cph-info-card:hover h3 {
  color: #b8841f;
}

.cph-info-card:hover span {
  letter-spacing: 1.4px;
}

.cph-info-card:hover p {
  transform: translateY(-2px);
}

/* Animations */
@keyframes cphFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

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

@keyframes cphIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-7px) rotate(3deg);
  }
}

@keyframes cphIconPop {
  0% {
    transform: scale(1) rotate(0);
  }

  45% {
    transform: scale(1.14) rotate(-6deg);
  }

  100% {
    transform: scale(1.05) rotate(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .cph-contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cph-contact-info-section {
    padding: 65px 0;
  }

  .cph-contact-info-grid {
    grid-template-columns: 1fr;
  }
}

.cph-contact-form-section {
  padding: 95px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 166, 66, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  overflow: hidden;
}

.cph-contact-form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.cph-contact-form-info {
  animation: cphSlideLeft 0.9s ease both;
}

.cph-form-tag {
  display: inline-block;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cph-contact-form-info h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: #1f1606;
  margin-bottom: 18px;
}

.cph-contact-form-info > p {
  color: #66583a;
  font-size: 17px;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 30px;
}

.cph-form-points {
  display: grid;
  gap: 14px;
}

.cph-form-points div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  align-items: center;
  background: #ffffff;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 12px 28px rgba(91, 63, 10, 0.06);
  animation: cphPointFade 0.8s ease both;
}

.cph-form-points div:nth-child(2) {
  animation-delay: 0.15s;
}

.cph-form-points div:nth-child(3) {
  animation-delay: 0.3s;
}

.cph-form-points i {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
}

.cph-form-points strong {
  color: #1f1606;
  font-size: 15px;
}

.cph-form-points small {
  color: #66583a;
  font-size: 13px;
  margin-top: 4px;
}

.cph-contact-form-card {
  position: relative;
  background: #ffffff;
  border-radius: 30px;
  padding: 34px;
  border: 1px solid rgba(214, 166, 66, 0.20);
  box-shadow: 0 24px 65px rgba(91, 63, 10, 0.12);
  overflow: hidden;
  animation: cphSlideRight 0.9s ease both;
}

.cph-contact-form-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.12);
}

.cph-contact-form-card form {
  position: relative;
  z-index: 2;
}

.cph-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cph-form-group {
  margin-bottom: 18px;
}

.cph-form-group label {
  display: block;
  color: #1f1606;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
}

.cph-form-group input,
.cph-form-group textarea {
  width: 100%;
  border: 1px solid rgba(214, 166, 66, 0.24);
  background: #fffaf0;
  color: #1f1606;
  padding: 15px 16px;
  border-radius: 16px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: 0.3s ease;
}

.cph-form-group textarea {
  resize: vertical;
  min-height: 135px;
}

.cph-form-group input::placeholder,
.cph-form-group textarea::placeholder {
  color: #9b8a68;
}

.cph-form-group input:focus,
.cph-form-group textarea:focus {
  background: #ffffff;
  border-color: #b8841f;
  box-shadow: 0 0 0 4px rgba(214, 166, 66, 0.16);
}

.cph-form-btn {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 16px 34px rgba(184, 132, 31, 0.26);
  transition: 0.3s ease;
}

.cph-form-btn span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: grid;
  place-items: center;
  transition: 0.3s ease;
}

.cph-form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(184, 132, 31, 0.34);
}

.cph-form-btn:hover span {
  transform: translateX(4px);
}

/* Animations */
@keyframes cphSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }

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

@keyframes cphSlideRight {
  from {
    opacity: 0;
    transform: translateX(34px);
  }

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

@keyframes cphPointFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

/* Responsive */
@media (max-width: 900px) {
  .cph-contact-form-wrap {
    grid-template-columns: 1fr;
  }

  .cph-contact-form-section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .cph-contact-form-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .cph-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cph-contact-form-info h2 {
    font-size: 34px;
  }
}

.cph-location-section {
  padding: 95px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 166, 66, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  overflow: hidden;
}

.cph-location-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.cph-location-info {
  animation: cphLocationLeft 0.9s ease both;
}

.cph-location-tag {
  display: inline-block;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cph-location-info h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: #1f1606;
  margin-bottom: 18px;
}

.cph-location-info > p {
  color: #66583a;
  font-size: 17px;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 28px;
}

.cph-location-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 16px 38px rgba(91, 63, 10, 0.08);
  padding: 20px;
  border-radius: 22px;
  margin-bottom: 24px;
  transition: 0.3s ease;
}

.cph-location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(91, 63, 10, 0.14);
}

.cph-location-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(184, 132, 31, 0.22);
}

.cph-location-icon svg {
  width: 25px;
  height: 25px;
}

.cph-location-card strong {
  display: block;
  font-size: 16px;
  color: #1f1606;
  margin-bottom: 6px;
}

.cph-location-card p {
  color: #66583a;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cph-location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(184, 132, 31, 0.26);
  transition: 0.3s ease;
}

.cph-location-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(184, 132, 31, 0.34);
}

.cph-map-box {
  position: relative;
  height: 460px;
  border-radius: 32px;
  overflow: hidden;
  border: 8px solid #ffffff;
  box-shadow: 0 28px 70px rgba(91, 63, 10, 0.16);
  animation: cphLocationRight 0.9s ease both;
}

.cph-map-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(214, 166, 66, 0.22);
  z-index: 2;
  pointer-events: none;
}

.cph-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}

/* Animations */
@keyframes cphLocationLeft {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }

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

@keyframes cphLocationRight {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .cph-location-wrap {
    grid-template-columns: 1fr;
  }

  .cph-location-section {
    padding: 70px 0;
  }

  .cph-map-box {
    height: 390px;
  }
}

@media (max-width: 600px) {
  .cph-location-card {
    padding: 18px;
  }

  .cph-map-box {
    height: 330px;
    border-radius: 24px;
  }
}

.cph-why-contact-section {
  position: relative;
  padding: 95px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(214, 166, 66, 0.11), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  overflow: hidden;
}

.cph-why-contact-section::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -150px;
  top: 90px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.10);
}

.cph-why-contact-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
  animation: cphWhyHeadFade 0.9s ease both;
}

.cph-why-contact-head span {
  display: inline-block;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cph-why-contact-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: #1f1606;
  margin-bottom: 16px;
}

.cph-why-contact-head p {
  color: #66583a;
  font-size: 17px;
  line-height: 1.7;
}

.cph-why-contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cph-why-contact-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 28px;
  padding: 34px 28px;
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 18px 45px rgba(91, 63, 10, 0.08);
  animation: cphWhyCardUp 0.85s ease both;
  transition: 0.35s ease;
}

.cph-why-contact-card:nth-child(2) {
  animation-delay: 0.14s;
}

.cph-why-contact-card:nth-child(3) {
  animation-delay: 0.28s;
}

.cph-why-contact-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -65px;
  top: -65px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.10);
  transition: 0.35s ease;
}

.cph-why-contact-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s ease;
}

.cph-why-contact-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(91, 63, 10, 0.16);
  border-color: rgba(184, 132, 31, 0.34);
}

.cph-why-contact-card:hover::before {
  transform: scale(1.45);
  background: rgba(214, 166, 66, 0.15);
}

.cph-why-contact-card:hover::after {
  transform: scaleX(1);
}

.cph-why-contact-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  box-shadow: 0 14px 30px rgba(184, 132, 31, 0.22);
  animation: cphWhyIconFloat 3s ease-in-out infinite;
}

.cph-why-contact-card:nth-child(2) .cph-why-contact-icon {
  animation-delay: 0.3s;
}

.cph-why-contact-card:nth-child(3) .cph-why-contact-icon {
  animation-delay: 0.6s;
}

.cph-why-contact-icon svg {
  width: 28px;
  height: 28px;
}

.cph-why-contact-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1606;
  font-size: 21px;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.cph-why-contact-card p {
  position: relative;
  z-index: 2;
  color: #66583a;
  font-size: 15px;
  line-height: 1.7;
  transition: 0.3s ease;
}

.cph-why-contact-card:hover h3 {
  color: #b8841f;
}

.cph-why-contact-card:hover p {
  transform: translateY(-2px);
}

/* Animations */
@keyframes cphWhyHeadFade {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes cphWhyCardUp {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.97);
  }

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

@keyframes cphWhyIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-7px) rotate(3deg);
  }
}

@media (max-width: 900px) {
  .cph-why-contact-grid {
    grid-template-columns: 1fr;
  }

  .cph-why-contact-section {
    padding: 70px 0;
  }
}

.cph-contact-cta-section {
  padding: 95px 0;
  background: #ffffff;
  overflow: hidden;
}

.cph-contact-cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 54px 58px;
  background:
    radial-gradient(circle at 88% 20%, rgba(255,255,255,0.22), transparent 26%),
    linear-gradient(135deg, #1f1606 0%, #b8841f 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  box-shadow: 0 30px 80px rgba(91, 63, 10, 0.22);
  animation: cphContactCtaUp 0.9s ease both;
}

.cph-contact-cta-box::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  top: -150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.cph-contact-cta-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: 45%;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.cph-contact-cta-content,
.cph-contact-cta-actions {
  position: relative;
  z-index: 2;
}

.cph-contact-cta-content span {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cph-contact-cta-content h2 {
  max-width: 720px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: #ffffff;
  margin-bottom: 14px;
}

.cph-contact-cta-content p {
  max-width: 620px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.7;
}

.cph-contact-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cph-contact-cta-primary,
.cph-contact-cta-secondary {
  height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.3s ease;
}

.cph-contact-cta-primary {
  background: #ffffff;
  color: #b8841f;
  gap: 10px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}

.cph-contact-cta-primary i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff2cc;
  color: #b8841f;
  display: grid;
  place-items: center;
  font-style: normal;
  transition: 0.3s ease;
}

.cph-contact-cta-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}

.cph-contact-cta-primary:hover,
.cph-contact-cta-secondary:hover {
  transform: translateY(-3px);
}

.cph-contact-cta-primary:hover i {
  transform: translateX(4px);
}

@keyframes cphContactCtaUp {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
  }

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

@media (max-width: 900px) {
  .cph-contact-cta-box {
    grid-template-columns: 1fr;
    padding: 38px 24px;
  }

  .cph-contact-cta-actions {
    width: 100%;
  }

  .cph-contact-cta-primary,
  .cph-contact-cta-secondary {
    width: 100%;
  }

  .cph-contact-cta-section {
    padding: 70px 0;
  }
}

.cph-contact-cta-primary i,
.cph-contact-cta-secondary i {
  font-size: 14px;
  transition: 0.3s ease;
}

.cph-contact-cta-primary:hover i {
  transform: rotate(-12deg);
}

.cph-contact-cta-secondary:hover i {
  transform: translateX(5px);
}

.cph-order-hero {
  padding: 55px 0;
  background: #fffaf0;
}

.cph-order-hero-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 44px 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(214, 166, 66, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #fff7df 100%);
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 22px 60px rgba(91, 63, 10, 0.10);
  animation: cphOrderShortHero 0.8s ease both;
}

.cph-order-breadcrumb {
  width: fit-content;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #ffffff;
  padding: 9px 15px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(91, 63, 10, 0.08);
}

.cph-order-breadcrumb a,
.cph-order-breadcrumb span,
.cph-order-breadcrumb i {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.cph-order-breadcrumb a {
  color: #b8841f;
}

.cph-order-breadcrumb i {
  color: #9b8a68;
  font-size: 11px;
}

.cph-order-breadcrumb span {
  color: #1f1606;
}

.cph-order-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff2cc;
  color: #b8841f;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cph-order-hero-box h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.4px;
  color: #1f1606;
  margin-bottom: 14px;
}

.cph-order-hero-box p {
  max-width: 620px;
  margin: 0 auto;
  color: #66583a;
  font-size: 16px;
  line-height: 1.7;
}

@keyframes cphOrderShortHero {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

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

@media (max-width: 600px) {
  .cph-order-hero {
    padding: 38px 0;
  }

  .cph-order-hero-box {
    padding: 34px 20px;
    border-radius: 24px;
  }

  .cph-order-hero-box h1 {
    font-size: 36px;
  }
}

.cph-order-form-section {
  padding: 95px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(214, 166, 66, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  overflow: hidden;
}

.cph-order-form-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.cph-order-form-info {
  animation: cphOrderInfoIn 0.9s ease both;
}

.cph-order-form-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cph-order-form-info h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: #1f1606;
  margin-bottom: 18px;
}

.cph-order-form-info p {
  color: #66583a;
  font-size: 17px;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 28px;
}

.cph-order-info-list {
  display: grid;
  gap: 14px;
}

.cph-order-info-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 12px 28px rgba(91, 63, 10, 0.06);
  padding: 15px 16px;
  border-radius: 16px;
  animation: cphOrderPointUp 0.8s ease both;
}

.cph-order-info-list div:nth-child(2) {
  animation-delay: 0.15s;
}

.cph-order-info-list div:nth-child(3) {
  animation-delay: 0.3s;
}

.cph-order-info-list i {
  color: #b8841f;
  font-size: 18px;
}

.cph-order-info-list span {
  color: #1f1606;
  font-size: 14px;
  font-weight: 700;
}

.cph-order-form-card {
  position: relative;
  background: #ffffff;
  border-radius: 30px;
  padding: 34px;
  border: 1px solid rgba(214, 166, 66, 0.20);
  box-shadow: 0 24px 65px rgba(91, 63, 10, 0.12);
  overflow: hidden;
  animation: cphOrderFormIn 0.9s ease both;
}

.cph-order-form-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.12);
}

.cph-order-form-card form {
  position: relative;
  z-index: 2;
}

.cph-order-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cph-order-form-group {
  margin-bottom: 18px;
}

.cph-order-form-group label {
  display: block;
  color: #1f1606;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
}

.cph-order-form-group input,
.cph-order-form-group select,
.cph-order-form-group textarea {
  width: 100%;
  border: 1px solid rgba(214, 166, 66, 0.24);
  background: #fffaf0;
  color: #1f1606;
  padding: 15px 16px;
  border-radius: 16px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: 0.3s ease;
}

.cph-order-form-group textarea {
  resize: vertical;
  min-height: 135px;
}

.cph-order-form-group input::placeholder,
.cph-order-form-group textarea::placeholder {
  color: #9b8a68;
}

.cph-order-form-group input:focus,
.cph-order-form-group select:focus,
.cph-order-form-group textarea:focus {
  background: #ffffff;
  border-color: #b8841f;
  box-shadow: 0 0 0 4px rgba(214, 166, 66, 0.16);
}

.cph-order-submit-btn {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 16px 34px rgba(184, 132, 31, 0.26);
  transition: 0.3s ease;
}

.cph-order-submit-btn i {
  transition: 0.3s ease;
}

.cph-order-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(184, 132, 31, 0.34);
}

.cph-order-submit-btn:hover i {
  transform: translateX(5px);
}

/* Animations */
@keyframes cphOrderInfoIn {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }

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

@keyframes cphOrderFormIn {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes cphOrderPointUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

/* Responsive */
@media (max-width: 900px) {
  .cph-order-form-wrap {
    grid-template-columns: 1fr;
  }

  .cph-order-form-section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .cph-order-form-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .cph-order-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cph-order-form-info h2 {
    font-size: 34px;
  }
}

.cph-order-steps-section {
  position: relative;
  padding: 95px 0;
  background:
    radial-gradient(circle at 15% 22%, rgba(214, 166, 66, 0.10), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  overflow: hidden;
}

.cph-order-steps-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -160px;
  top: 90px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.10);
}

.cph-order-steps-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  animation: cphOrderStepsHead 0.9s ease both;
}

.cph-order-steps-head span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cph-order-steps-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: #1f1606;
  margin-bottom: 16px;
}

.cph-order-steps-head p {
  color: #66583a;
  font-size: 17px;
  line-height: 1.7;
}

.cph-order-steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cph-order-step-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 28px;
  padding: 34px 28px;
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 18px 45px rgba(91, 63, 10, 0.08);
  transition: 0.35s ease;
  animation: cphOrderStepUp 0.85s ease both;
}

.cph-order-step-card:nth-child(2) {
  animation-delay: 0.16s;
}

.cph-order-step-card:nth-child(3) {
  animation-delay: 0.32s;
}

.cph-order-step-card::before {
  content: "";
  position: absolute;
  width: 155px;
  height: 155px;
  right: -68px;
  top: -68px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.10);
  transition: 0.35s ease;
}

.cph-order-step-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s ease;
}

.cph-order-step-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(91, 63, 10, 0.16);
  border-color: rgba(184, 132, 31, 0.34);
}

.cph-order-step-card:hover::before {
  transform: scale(1.45);
  background: rgba(214, 166, 66, 0.15);
}

.cph-order-step-card:hover::after {
  transform: scaleX(1);
}

.cph-step-number {
  position: absolute;
  right: 24px;
  top: 22px;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  color: rgba(184, 132, 31, 0.12);
  z-index: 2;
}

.cph-step-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 24px;
  box-shadow: 0 14px 30px rgba(184, 132, 31, 0.22);
  animation: cphOrderStepIconFloat 3s ease-in-out infinite;
}

.cph-order-step-card:nth-child(2) .cph-step-icon {
  animation-delay: 0.3s;
}

.cph-order-step-card:nth-child(3) .cph-step-icon {
  animation-delay: 0.6s;
}

.cph-order-step-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1606;
  font-size: 21px;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.cph-order-step-card p {
  position: relative;
  z-index: 2;
  color: #66583a;
  font-size: 15px;
  line-height: 1.7;
  transition: 0.3s ease;
}

.cph-order-step-card:hover h3 {
  color: #b8841f;
}

.cph-order-step-card:hover p {
  transform: translateY(-2px);
}

/* Animations */
@keyframes cphOrderStepsHead {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes cphOrderStepUp {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.97);
  }

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

@keyframes cphOrderStepIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-7px) rotate(3deg);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .cph-order-steps-grid {
    grid-template-columns: 1fr;
  }

  .cph-order-steps-section {
    padding: 70px 0;
  }
}

.cph-order-cta-section {
  padding: 95px 0;
  background: #ffffff;
  overflow: hidden;
}

.cph-order-cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 54px 58px;
  background:
    radial-gradient(circle at 88% 20%, rgba(255,255,255,0.22), transparent 26%),
    linear-gradient(135deg, #1f1606 0%, #b8841f 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  box-shadow: 0 30px 80px rgba(91, 63, 10, 0.22);
  animation: cphOrderCtaUp 0.9s ease both;
}

.cph-order-cta-box::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  top: -150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.cph-order-cta-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: 45%;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.cph-order-cta-content,
.cph-order-cta-actions {
  position: relative;
  z-index: 2;
}

.cph-order-cta-content span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cph-order-cta-content h2 {
  max-width: 720px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: #ffffff;
  margin-bottom: 14px;
}

.cph-order-cta-content p {
  max-width: 620px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.7;
}

.cph-order-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cph-order-cta-primary,
.cph-order-cta-secondary {
  height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.3s ease;
}

.cph-order-cta-primary {
  background: #ffffff;
  color: #b8841f;
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}

.cph-order-cta-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}

.cph-order-cta-primary i,
.cph-order-cta-secondary i {
  transition: 0.3s ease;
}

.cph-order-cta-primary:hover,
.cph-order-cta-secondary:hover {
  transform: translateY(-3px);
}

.cph-order-cta-primary:hover i {
  transform: translateX(5px);
}

.cph-order-cta-secondary:hover i {
  transform: rotate(-12deg);
}

@keyframes cphOrderCtaUp {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
  }

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

@media (max-width: 900px) {
  .cph-order-cta-box {
    grid-template-columns: 1fr;
    padding: 38px 24px;
  }

  .cph-order-cta-actions {
    width: 100%;
  }

  .cph-order-cta-primary,
  .cph-order-cta-secondary {
    width: 100%;
  }

  .cph-order-cta-section {
    padding: 70px 0;
  }
}

.cph-order-hero-v2 {
  padding: 55px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(214, 166, 66, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.cph-order-v2-box {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(31, 22, 6, 0.96), rgba(184, 132, 31, 0.92));
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(91, 63, 10, 0.22);
  animation: cphOrderV2In 0.8s ease both;
}

.cph-order-v2-box::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -130px;
  top: -160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
}

.cph-order-v2-box::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  left: 44%;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.cph-order-v2-left,
.cph-order-v2-right {
  position: relative;
  z-index: 2;
}

.cph-order-breadcrumb-v2 {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.12);
  padding: 9px 15px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.cph-order-breadcrumb-v2 a,
.cph-order-breadcrumb-v2 span,
.cph-order-breadcrumb-v2 i {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.cph-order-breadcrumb-v2 a {
  color: #ffffff;
}

.cph-order-breadcrumb-v2 i {
  color: rgba(255,255,255,0.65);
  font-size: 11px;
}

.cph-order-breadcrumb-v2 span {
  color: rgba(255,255,255,0.82);
}

.cph-order-v2-left h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  color: #ffffff;
  margin-bottom: 14px;
}

.cph-order-v2-left p {
  max-width: 620px;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.7;
}

.cph-order-v2-right {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(12px);
}

.cph-order-v2-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 18px;
  background: #ffffff;
  color: #b8841f;
  display: grid;
  place-items: center;
  font-size: 24px;
  animation: cphOrderV2Float 3s ease-in-out infinite;
}

.cph-order-v2-right strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 5px;
}

.cph-order-v2-right span {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

@keyframes cphOrderV2In {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }

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

@keyframes cphOrderV2Float {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-7px) rotate(4deg);
  }
}

@media (max-width: 800px) {
  .cph-order-v2-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .cph-order-v2-right {
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .cph-order-hero-v2 {
    padding: 38px 0;
  }

  .cph-order-v2-box {
    border-radius: 26px;
  }

  .cph-order-v2-left h1 {
    font-size: 36px;
  }
}

.cph-about-hero {
  padding: 55px 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(214, 166, 66, 0.13), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  overflow: hidden;
}

.cph-about-hero-box {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 46px;
  border-radius: 34px;
  background:
    radial-gradient(circle at right top, rgba(255,255,255,0.18), transparent 34%),
    linear-gradient(135deg, #1f1606 0%, #b8841f 100%);
  display: grid;
  grid-template-columns: 1fr 310px;
  align-items: center;
  gap: 36px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(91, 63, 10, 0.22);
  animation: cphAboutHeroIn 0.85s ease both;
}

.cph-about-hero-box::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  top: -170px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.cph-about-hero-box::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  left: 43%;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.cph-about-hero-content,
.cph-about-hero-card {
  position: relative;
  z-index: 2;
}

.cph-about-top-line,
.cph-about-tag-wrap {
  display: block;
  width: 100%;
}

.cph-about-breadcrumb {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.12);
  padding: 9px 15px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.cph-about-breadcrumb a,
.cph-about-breadcrumb span,
.cph-about-breadcrumb i {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.cph-about-breadcrumb a {
  color: #ffffff;
}

.cph-about-breadcrumb i {
  color: rgba(255,255,255,0.65);
  font-size: 11px;
}

.cph-about-breadcrumb span {
  color: rgba(255,255,255,0.82);
}

.cph-about-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cph-about-hero h1 {
  max-width: 680px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  color: #ffffff;
  margin-bottom: 16px;
}

.cph-about-hero p {
  max-width: 620px;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.75;
}

.cph-about-hero-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 26px;
  padding: 26px;
  backdrop-filter: blur(12px);
  animation: cphAboutCardFloat 3.4s ease-in-out infinite;
}

.cph-about-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: #ffffff;
  color: #b8841f;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.cph-about-hero-card h3 {
  color: #ffffff;
  font-size: 21px;
  margin-bottom: 10px;
}

.cph-about-hero-card p {
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.65;
}

@keyframes cphAboutHeroIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }

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

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

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

@media (max-width: 850px) {
  .cph-about-hero-box {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }

  .cph-about-hero-card {
    max-width: 360px;
    animation: none;
  }
}

@media (max-width: 600px) {
  .cph-about-hero {
    padding: 38px 0;
  }

  .cph-about-hero-box {
    border-radius: 26px;
  }

  .cph-about-hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }
}

.cph-story-section {
  position: relative;
  padding: 95px 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(214, 166, 66, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  overflow: hidden;
}

.cph-story-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -150px;
  bottom: -160px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.10);
}

.cph-story-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.cph-story-left {
  animation: cphStoryLeft 0.9s ease both;
}

.cph-story-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cph-story-left h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: #1f1606;
  margin-bottom: 20px;
}

.cph-story-left p {
  color: #66583a;
  font-size: 17px;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 16px;
}

.cph-story-right {
  position: relative;
  display: grid;
  gap: 20px;
}

.cph-story-right::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(180deg, #d6a642, rgba(214, 166, 66, 0.15));
}

.cph-story-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  background: #ffffff;
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 16px 38px rgba(91, 63, 10, 0.08);
  transition: 0.35s ease;
  animation: cphStoryStep 0.85s ease both;
}

.cph-story-step:nth-child(2) {
  animation-delay: 0.15s;
}

.cph-story-step:nth-child(3) {
  animation-delay: 0.3s;
}

.cph-story-step:hover {
  transform: translateX(10px);
  box-shadow: 0 26px 60px rgba(91, 63, 10, 0.14);
  border-color: rgba(184, 132, 31, 0.34);
}

.cph-story-dot {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 14px 30px rgba(184, 132, 31, 0.22);
  animation: cphStoryIconFloat 3s ease-in-out infinite;
}

.cph-story-step:nth-child(2) .cph-story-dot {
  animation-delay: 0.3s;
}

.cph-story-step:nth-child(3) .cph-story-dot {
  animation-delay: 0.6s;
}

.cph-story-step span {
  display: inline-block;
  color: #b8841f;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 7px;
}

.cph-story-step h3 {
  color: #1f1606;
  font-size: 21px;
  margin-bottom: 8px;
}

.cph-story-step p {
  color: #66583a;
  font-size: 15px;
  line-height: 1.65;
}

@keyframes cphStoryLeft {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }

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

@keyframes cphStoryStep {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes cphStoryIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-7px) rotate(4deg);
  }
}

@media (max-width: 900px) {
  .cph-story-wrap {
    grid-template-columns: 1fr;
  }

  .cph-story-section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .cph-story-step {
    grid-template-columns: 1fr;
  }

  .cph-story-right::before {
    display: none;
  }

  .cph-story-step:hover {
    transform: translateY(-6px);
  }
}

.cph-mv-section {
  position: relative;
  padding: 95px 0;
  background:
    radial-gradient(circle at 14% 25%, rgba(214, 166, 66, 0.11), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(184, 132, 31, 0.10), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  overflow: hidden;
}

.cph-mv-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -160px;
  top: 90px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.10);
}

.cph-mv-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
  animation: cphMvHeadIn 0.9s ease both;
}

.cph-mv-head span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cph-mv-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: #1f1606;
  margin-bottom: 16px;
}

.cph-mv-head p {
  color: #66583a;
  font-size: 17px;
  line-height: 1.7;
}

.cph-mv-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 86px 1fr;
  align-items: stretch;
  gap: 0;
}

.cph-mv-panel {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(214, 166, 66, 0.20);
  box-shadow: 0 24px 65px rgba(91, 63, 10, 0.10);
  padding: 38px;
  transition: 0.35s ease;
}

.cph-mv-mission {
  border-radius: 32px 0 0 32px;
  animation: cphMvLeftIn 0.9s ease both;
}

.cph-mv-vision {
  border-radius: 0 32px 32px 0;
  animation: cphMvRightIn 0.9s ease both;
}

.cph-mv-panel::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -75px;
  top: -75px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.11);
  transition: 0.35s ease;
}

.cph-mv-panel:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 80px rgba(91, 63, 10, 0.17);
  border-color: rgba(184, 132, 31, 0.35);
}

.cph-mv-panel:hover::before {
  transform: scale(1.5);
  background: rgba(214, 166, 66, 0.16);
}

.cph-mv-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cph-mv-icon {
  width: 66px;
  height: 66px;
  min-width: 66px;
  border-radius: 22px;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: 0 14px 30px rgba(184, 132, 31, 0.22);
  animation: cphMvIconFloat 3s ease-in-out infinite;
}

.cph-mv-vision .cph-mv-icon {
  animation-delay: 0.4s;
}

.cph-mv-top small {
  display: block;
  color: #b8841f;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cph-mv-top h3 {
  color: #1f1606;
  font-size: 26px;
  line-height: 1.15;
}

.cph-mv-panel > p {
  position: relative;
  z-index: 2;
  color: #66583a;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 26px;
}

.cph-mv-line {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cph-mv-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fffaf0;
  color: #1f1606;
  border: 1px solid rgba(214, 166, 66, 0.18);
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.cph-mv-line i {
  color: #b8841f;
}

.cph-mv-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cphMvCenterIn 1s ease both;
}

.cph-mv-center::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(214, 166, 66, 0.45),
    transparent
  );
}

.cph-mv-orb {
  position: relative;
  z-index: 3;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ffffff;
  color: #b8841f;
  border: 8px solid #fff2cc;
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 18px 45px rgba(91, 63, 10, 0.18);
  animation: cphMvPulse 2.6s ease-in-out infinite;
}

/* Animations */
@keyframes cphMvHeadIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

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

@keyframes cphMvLeftIn {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }

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

@keyframes cphMvRightIn {
  from {
    opacity: 0;
    transform: translateX(36px);
  }

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

@keyframes cphMvCenterIn {
  from {
    opacity: 0;
    transform: scale(0.72);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cphMvIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-7px) rotate(4deg);
  }
}

@keyframes cphMvPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 18px 45px rgba(91, 63, 10, 0.18);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 26px 60px rgba(184, 132, 31, 0.28);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .cph-mv-wrapper {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cph-mv-mission,
  .cph-mv-vision {
    border-radius: 30px;
  }

  .cph-mv-center {
    display: none;
  }

  .cph-mv-section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .cph-mv-panel {
    padding: 28px 22px;
    min-height: auto;
  }

  .cph-mv-top {
    align-items: flex-start;
  }

  .cph-mv-top h3 {
    font-size: 24px;
  }
}

.cph-about-why-section {
  position: relative;
  padding: 95px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(214, 166, 66, 0.11), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  overflow: hidden;
}

.cph-about-why-section::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: -150px;
  top: 120px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.10);
}

.cph-about-why-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
}

.cph-about-why-left {
  position: sticky;
  top: 120px;
  align-self: start;
  animation: cphAboutWhyLeft 0.9s ease both;
}

.cph-about-why-left span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cph-about-why-left h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: #1f1606;
  margin-bottom: 18px;
}

.cph-about-why-left p {
  color: #66583a;
  font-size: 17px;
  line-height: 1.75;
  max-width: 520px;
}

.cph-about-why-right {
  display: grid;
  gap: 18px;
}

.cph-about-why-item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 16px 38px rgba(91, 63, 10, 0.08);
  transition: 0.35s ease;
  animation: cphAboutWhyItem 0.85s ease both;
}

.cph-about-why-item:nth-child(2) {
  animation-delay: 0.12s;
}

.cph-about-why-item:nth-child(3) {
  animation-delay: 0.24s;
}

.cph-about-why-item:nth-child(4) {
  animation-delay: 0.36s;
}

.cph-about-why-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214,166,66,0.12), transparent 42%);
  opacity: 0;
  transition: 0.35s ease;
}

.cph-about-why-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 30px;
  background: linear-gradient(180deg, #d6a642, #b8841f);
  transform: scaleY(0);
  transition: 0.35s ease;
}

.cph-about-why-item:hover {
  transform: translateX(10px);
  box-shadow: 0 28px 65px rgba(91, 63, 10, 0.15);
  border-color: rgba(184, 132, 31, 0.34);
}

.cph-about-why-item:hover::before {
  opacity: 1;
}

.cph-about-why-item:hover::after {
  transform: scaleY(1);
}

.cph-about-why-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 14px 30px rgba(184, 132, 31, 0.22);
  animation: cphAboutWhyFloat 3s ease-in-out infinite;
}

.cph-about-why-item:nth-child(2) .cph-about-why-icon {
  animation-delay: 0.25s;
}

.cph-about-why-item:nth-child(3) .cph-about-why-icon {
  animation-delay: 0.5s;
}

.cph-about-why-item:nth-child(4) .cph-about-why-icon {
  animation-delay: 0.75s;
}

.cph-about-why-item h3 {
  position: relative;
  z-index: 2;
  color: #1f1606;
  font-size: 20px;
  margin-bottom: 8px;
  transition: 0.3s ease;
}

.cph-about-why-item p {
  position: relative;
  z-index: 2;
  color: #66583a;
  font-size: 15px;
  line-height: 1.65;
}

.cph-about-why-item:hover h3 {
  color: #b8841f;
}

/* Animations */
@keyframes cphAboutWhyLeft {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }

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

@keyframes cphAboutWhyItem {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes cphAboutWhyFloat {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-7px) rotate(4deg);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .cph-about-why-wrap {
    grid-template-columns: 1fr;
  }

  .cph-about-why-left {
    position: relative;
    top: 0;
  }

  .cph-about-why-section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .cph-about-why-item {
    grid-template-columns: 1fr;
  }

  .cph-about-why-item:hover {
    transform: translateY(-6px);
  }
}

.cph-values-section {
  position: relative;
  padding: 95px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(214, 166, 66, 0.11), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(184, 132, 31, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  overflow: hidden;
}

.cph-values-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
  animation: cphValuesHeadIn 0.9s ease both;
}

.cph-values-head span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cph-values-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: #1f1606;
  margin-bottom: 16px;
}

.cph-values-head p {
  color: #66583a;
  font-size: 17px;
  line-height: 1.7;
}

.cph-values-orbit {
  position: relative;
  z-index: 2;
  min-height: 680px;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 40px;
  background:
    radial-gradient(circle at center, rgba(214, 166, 66, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,247,223,0.96));
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 28px 70px rgba(91, 63, 10, 0.10);
  overflow: hidden;
  animation: cphValuesPanelIn 0.9s ease both;
}

.cph-values-orbit::before {
  content: "";
  position: absolute;
  inset: 95px;
  border: 1px dashed rgba(184, 132, 31, 0.26);
  border-radius: 50%;
  animation: cphValuesRotate 30s linear infinite;
}

.cph-values-orbit::after {
  content: "";
  position: absolute;
  inset: 185px;
  border: 1px dashed rgba(214, 166, 66, 0.22);
  border-radius: 50%;
  animation: cphValuesRotateReverse 24s linear infinite;
}

.cph-values-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f1606, #b8841f);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(91, 63, 10, 0.28);
  animation: cphValuesPulse 3s ease-in-out infinite;
}

.cph-values-center i {
  font-size: 34px;
}

.cph-values-center strong {
  max-width: 120px;
  font-size: 15px;
  line-height: 1.35;
}

.cph-value-item {
  position: absolute;
  z-index: 4;
  width: 260px;
  background: #ffffff;
  border-radius: 26px;
  padding: 22px;
  border: 1px solid rgba(214, 166, 66, 0.20);
  box-shadow: 0 18px 45px rgba(91, 63, 10, 0.10);
  transition: 0.35s ease;
  animation: cphValueItemIn 0.85s ease both;
}

.cph-value-one {
  left: 86px;
  top: 82px;
}

.cph-value-two {
  right: 86px;
  top: 82px;
  animation-delay: 0.12s;
}

.cph-value-three {
  left: 86px;
  bottom: 82px;
  animation-delay: 0.24s;
}

.cph-value-four {
  right: 86px;
  bottom: 82px;
  animation-delay: 0.36s;
}

.cph-value-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 70px rgba(91, 63, 10, 0.18);
  border-color: rgba(184, 132, 31, 0.36);
}

.cph-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 23px;
  margin-bottom: 16px;
  box-shadow: 0 14px 30px rgba(184, 132, 31, 0.22);
  animation: cphValueIconFloat 3s ease-in-out infinite;
}

.cph-value-two .cph-value-icon {
  animation-delay: 0.25s;
}

.cph-value-three .cph-value-icon {
  animation-delay: 0.5s;
}

.cph-value-four .cph-value-icon {
  animation-delay: 0.75s;
}

.cph-value-item h3 {
  color: #1f1606;
  font-size: 19px;
  margin-bottom: 8px;
  transition: 0.3s ease;
}

.cph-value-item p {
  color: #66583a;
  font-size: 14px;
  line-height: 1.6;
}

.cph-value-item:hover h3 {
  color: #b8841f;
}

/* Animations */
@keyframes cphValuesHeadIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes cphValuesPanelIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }

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

@keyframes cphValueItemIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.96);
  }

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

@keyframes cphValueIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-7px) rotate(4deg);
  }
}

@keyframes cphValuesPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.06);
  }
}

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

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

@keyframes cphValuesRotateReverse {
  from {
    transform: rotate(360deg);
  }

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

/* Responsive */
@media (max-width: 1050px) {
  .cph-values-orbit {
    min-height: auto;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .cph-values-orbit::before,
  .cph-values-orbit::after,
  .cph-values-center {
    display: none;
  }

  .cph-value-item {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
}

@media (max-width: 650px) {
  .cph-values-section {
    padding: 70px 0;
  }

  .cph-values-orbit {
    grid-template-columns: 1fr;
    padding: 22px;
    border-radius: 28px;
  }
}

.cph-about-cta-section {
  padding: 95px 0;
  background: #ffffff;
  overflow: hidden;
}

.cph-about-cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 54px 58px;
  background:
    radial-gradient(circle at 88% 20%, rgba(255,255,255,0.22), transparent 26%),
    linear-gradient(135deg, #1f1606 0%, #b8841f 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  box-shadow: 0 30px 80px rgba(91, 63, 10, 0.22);
  animation: cphAboutCtaUp 0.9s ease both;
}

.cph-about-cta-box::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  top: -150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.cph-about-cta-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: 45%;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.cph-about-cta-content,
.cph-about-cta-actions {
  position: relative;
  z-index: 2;
}

.cph-about-cta-content span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cph-about-cta-content h2 {
  max-width: 720px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: #ffffff;
  margin-bottom: 14px;
}

.cph-about-cta-content p {
  max-width: 620px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.7;
}

.cph-about-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cph-about-cta-primary,
.cph-about-cta-secondary {
  height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.3s ease;
}

.cph-about-cta-primary {
  background: #ffffff;
  color: #b8841f;
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}

.cph-about-cta-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}

.cph-about-cta-primary i,
.cph-about-cta-secondary i {
  transition: 0.3s ease;
}

.cph-about-cta-primary:hover,
.cph-about-cta-secondary:hover {
  transform: translateY(-3px);
}

.cph-about-cta-primary:hover i {
  transform: translateX(5px);
}

.cph-about-cta-secondary:hover i {
  transform: rotate(-10deg);
}

@keyframes cphAboutCtaUp {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
  }

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

@media (max-width: 900px) {
  .cph-about-cta-box {
    grid-template-columns: 1fr;
    padding: 38px 24px;
  }

  .cph-about-cta-actions {
    width: 100%;
  }

  .cph-about-cta-primary,
  .cph-about-cta-secondary {
    width: 100%;
  }

  .cph-about-cta-section {
    padding: 70px 0;
  }
}

.cph-products-hero {
  padding: 55px 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(214, 166, 66, 0.13), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  overflow: hidden;
}

.cph-products-hero-box {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 44px 30px;
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at right top, rgba(255,255,255,0.18), transparent 34%),
    linear-gradient(135deg, #1f1606 0%, #b8841f 100%);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(91, 63, 10, 0.22);
  animation: cphProductsHeroIn 0.85s ease both;
}

.cph-products-hero-box::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -140px;
  top: -160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.cph-products-hero-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.cph-products-hero-top,
.cph-products-tag-wrap,
.cph-products-hero-box h1,
.cph-products-hero-box p {
  position: relative;
  z-index: 2;
}

.cph-products-hero-top,
.cph-products-tag-wrap {
  display: block;
  width: 100%;
}

.cph-products-breadcrumb {
  width: fit-content;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.12);
  padding: 9px 15px;
  border-radius: 999px;
}

.cph-products-breadcrumb a,
.cph-products-breadcrumb span,
.cph-products-breadcrumb i {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.cph-products-breadcrumb a {
  color: #ffffff;
}

.cph-products-breadcrumb i {
  color: rgba(255,255,255,0.65);
  font-size: 11px;
}

.cph-products-breadcrumb span {
  color: rgba(255,255,255,0.82);
}

.cph-products-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cph-products-hero-box h1 {
  max-width: 680px;
  margin: 0 auto 15px;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.4px;
  color: #ffffff;
}

.cph-products-hero-box p {
  max-width: 590px;
  margin: 0 auto;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.7;
}

@keyframes cphProductsHeroIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }

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

@media (max-width: 600px) {
  .cph-products-hero {
    padding: 38px 0;
  }

  .cph-products-hero-box {
    padding: 34px 20px;
    border-radius: 26px;
  }

  .cph-products-hero-box h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }
}

.cph-product-search-box {
  max-width: 560px;
  height: 58px;
  margin: 0 auto 42px;
  background: #ffffff;
  border: 1px solid rgba(214, 166, 66, 0.22);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  box-shadow: 0 16px 38px rgba(91, 63, 10, 0.08);
  animation: cphSearchFade 0.8s ease both;
}

.cph-product-search-box i {
  color: #b8841f;
  font-size: 18px;
}

.cph-product-search-box input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #1f1606;
  font-size: 15px;
  font-family: inherit;
}

.cph-product-search-box input::placeholder {
  color: #9b8a68;
}

.cph-prime-product {
  transition: 0.35s ease;
}

.cph-prime-product.cph-hide-product {
  display: none;
}

.cph-no-products {
  display: none;
  max-width: 440px;
  margin: 35px auto 0;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(214, 166, 66, 0.20);
  border-radius: 26px;
  padding: 34px 24px;
  box-shadow: 0 18px 45px rgba(91, 63, 10, 0.08);
}

.cph-no-products.show {
  display: block;
  animation: cphSearchFade 0.4s ease both;
}

.cph-no-products i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #fff2cc;
  color: #b8841f;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin: 0 auto 18px;
}

.cph-no-products h3 {
  color: #1f1606;
  font-size: 22px;
  margin-bottom: 8px;
}

.cph-no-products p {
  color: #66583a;
  font-size: 15px;
  line-height: 1.6;
}

@keyframes cphSearchFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (max-width: 600px) {
  .cph-product-search-box {
    height: 54px;
    margin-bottom: 30px;
  }
}

.cph-products-cta-section {
  padding: 95px 0;
  background: #ffffff;
  overflow: hidden;
}

.cph-products-cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 54px 58px;
  background:
    radial-gradient(circle at 88% 20%, rgba(255,255,255,0.22), transparent 26%),
    linear-gradient(135deg, #1f1606 0%, #b8841f 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  box-shadow: 0 30px 80px rgba(91, 63, 10, 0.22);
  animation: cphProductsCtaUp 0.9s ease both;
}

.cph-products-cta-box::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  top: -150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.cph-products-cta-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: 45%;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.cph-products-cta-content,
.cph-products-cta-actions {
  position: relative;
  z-index: 2;
}

.cph-products-cta-content span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cph-products-cta-content h2 {
  max-width: 720px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: #ffffff;
  margin-bottom: 14px;
}

.cph-products-cta-content p {
  max-width: 620px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.7;
}

.cph-products-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cph-products-cta-primary,
.cph-products-cta-secondary {
  height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.3s ease;
}

.cph-products-cta-primary {
  background: #ffffff;
  color: #b8841f;
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}

.cph-products-cta-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}

.cph-products-cta-primary i,
.cph-products-cta-secondary i {
  transition: 0.3s ease;
}

.cph-products-cta-primary:hover,
.cph-products-cta-secondary:hover {
  transform: translateY(-3px);
}

.cph-products-cta-primary:hover i {
  transform: translateX(5px);
}

.cph-products-cta-secondary:hover i {
  transform: rotate(-10deg);
}

@keyframes cphProductsCtaUp {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
  }

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

@media (max-width: 900px) {
  .cph-products-cta-box {
    grid-template-columns: 1fr;
    padding: 38px 24px;
  }

  .cph-products-cta-actions {
    width: 100%;
  }

  .cph-products-cta-primary,
  .cph-products-cta-secondary {
    width: 100%;
  }

  .cph-products-cta-section {
    padding: 70px 0;
  }
}

.cph-products-simple-hero {
  padding: 55px 0 35px;
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.cph-products-simple-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 34px 24px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 18px 45px rgba(91, 63, 10, 0.08);
  position: relative;
  overflow: hidden;
  animation: cphSimpleProductHero 0.75s ease both;
}

.cph-products-simple-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.10);
}

.cph-products-simple-breadcrumb {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 15px;
  border-radius: 999px;
}

.cph-products-simple-breadcrumb a,
.cph-products-simple-breadcrumb span,
.cph-products-simple-breadcrumb i {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.cph-products-simple-breadcrumb a {
  color: #b8841f;
}

.cph-products-simple-breadcrumb i {
  font-size: 11px;
  color: #9b8a68;
}

.cph-products-simple-breadcrumb span {
  color: #1f1606;
}

.cph-products-simple-box h1 {
  position: relative;
  z-index: 2;
  color: #1f1606;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.3px;
  margin-bottom: 12px;
}

.cph-products-simple-box p {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
  color: #66583a;
  font-size: 16px;
  line-height: 1.7;
}

@keyframes cphSimpleProductHero {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }

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

@media (max-width: 600px) {
  .cph-products-simple-hero {
    padding: 38px 0 25px;
  }

  .cph-products-simple-box {
    padding: 30px 18px;
    border-radius: 24px;
  }

  .cph-products-simple-box h1 {
    font-size: 35px;
  }
}

.cph-hero-slider {
  position: relative;
  overflow: hidden;
  background: #fffaf0;
}

.cph-hero-slide {
  display: none;
  animation: cphSlideFade 0.7s ease both;
}

.cph-hero-slide.active {
  display: block;
}

.cph-hero-slide.active .cph-hero-left {
  animation: cphHeroTextIn 0.8s ease both;
}

.cph-hero-slide.active .cph-hero-right {
  animation: cphHeroImageIn 0.9s ease both;
}

.cph-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #b8841f;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(91, 63, 10, 0.16);
  transition: 0.3s ease;
}

.cph-slider-btn:hover {
  background: #b8841f;
  color: #ffffff;
}

.cph-prev {
  left: 24px;
}

.cph-next {
  right: 24px;
}

.cph-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 9px;
}

.cph-slider-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(184, 132, 31, 0.28);
  cursor: pointer;
  transition: 0.3s ease;
}

.cph-slider-dots button.active {
  width: 30px;
  background: #b8841f;
}

@keyframes cphSlideFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes cphHeroTextIn {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }

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

@keyframes cphHeroImageIn {
  from {
    opacity: 0;
    transform: translateX(35px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 991px) {
  .cph-slider-btn,
  .cph-slider-dots {
    display: none;
  }
}


/* Promise Section Animations */
.cph-care-section::before {
  animation: cphCareCircleLeft 6s ease-in-out infinite;
}

.cph-care-section::after {
  animation: cphCareCircleRight 7s ease-in-out infinite;
}

.cph-care-wrapper {
  animation: cphCareWrapperIn 0.9s ease both;
}

.cph-care-left {
  animation: cphCareLeftIn 0.9s ease both;
}

.cph-care-card {
  animation: cphCareCardIn 0.85s ease both;
}

.cph-care-card:nth-child(2) {
  animation-delay: 0.12s;
}

.cph-care-card:nth-child(3) {
  animation-delay: 0.24s;
}

.cph-care-card:nth-child(4) {
  animation-delay: 0.36s;
}

.cph-care-icon {
  animation: cphCareIconFloat 3s ease-in-out infinite;
}

.cph-care-card:nth-child(2) .cph-care-icon {
  animation-delay: 0.25s;
}

.cph-care-card:nth-child(3) .cph-care-icon {
  animation-delay: 0.5s;
}

.cph-care-card:nth-child(4) .cph-care-icon {
  animation-delay: 0.75s;
}

.cph-care-card:hover .cph-care-icon {
  animation: cphCareIconPop 0.55s ease both;
}

.cph-care-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.cph-care-btn {
  transition: 0.3s ease;
}

.cph-care-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(31, 22, 6, 0.24);
}

/* Keyframes */
@keyframes cphCareCircleLeft {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(28px, -18px) scale(1.08);
  }
}

@keyframes cphCareCircleRight {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-24px, 20px) scale(1.1);
  }
}

@keyframes cphCareWrapperIn {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
  }

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

@keyframes cphCareLeftIn {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }

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

@keyframes cphCareCardIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }

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

@keyframes cphCareIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-7px) rotate(4deg);
  }
}

@keyframes cphCareIconPop {
  0% {
    transform: scale(1) rotate(0);
  }

  45% {
    transform: scale(1.15) rotate(-6deg);
  }

  100% {
    transform: scale(1.05) rotate(0);
  }
}

/* Home CTA Animations */
.cph-cta-box {
  animation: cphHomeCtaBoxIn 0.95s ease both;
}

.cph-cta-box::before {
  animation: cphHomeCtaCircleOne 6s ease-in-out infinite;
}

.cph-cta-box::after {
  animation: cphHomeCtaCircleTwo 7s ease-in-out infinite;
}

.cph-cta-content {
  animation: cphHomeCtaTextIn 0.9s ease both;
}

.cph-cta-panel {
  animation: cphHomeCtaPanelIn 0.95s ease both, cphHomeCtaPanelFloat 3.8s ease-in-out infinite 1s;
}

.cph-cta-panel-icon {
  animation: cphHomeCtaIconPulse 2.8s ease-in-out infinite;
}

.cph-cta-points span {
  animation: cphHomeCtaPointIn 0.7s ease both;
}

.cph-cta-points span:nth-child(1) {
  animation-delay: 0.15s;
}

.cph-cta-points span:nth-child(2) {
  animation-delay: 0.3s;
}

.cph-cta-points span:nth-child(3) {
  animation-delay: 0.45s;
}

.cph-cta-primary,
.cph-cta-secondary {
  transition: 0.3s ease;
}

.cph-cta-primary:hover,
.cph-cta-secondary:hover {
  transform: translateY(-4px);
}

.cph-cta-primary:hover svg {
  transform: rotate(-8deg) scale(1.05);
}

.cph-cta-primary svg {
  transition: 0.3s ease;
}

.cph-cta-secondary:hover {
  background: rgba(255,255,255,0.16);
}

/* Keyframes */
@keyframes cphHomeCtaBoxIn {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
  }

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

@keyframes cphHomeCtaTextIn {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }

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

@keyframes cphHomeCtaPanelIn {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

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

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

@keyframes cphHomeCtaIconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 14px 30px rgba(184, 132, 31, 0.22);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 22px 48px rgba(184, 132, 31, 0.34);
  }
}

@keyframes cphHomeCtaPointIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

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

@keyframes cphHomeCtaCircleOne {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-28px, 22px) scale(1.09);
  }
}

@keyframes cphHomeCtaCircleTwo {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(24px, -18px) scale(1.12);
  }
}

.cph-pd-hero {
  padding: 55px 0 35px;
  background:
    radial-gradient(circle at 12% 20%, rgba(214, 166, 66, 0.10), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  overflow: hidden;
}

.cph-pd-hero-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 34px 24px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(214, 166, 66, 0.18);
  box-shadow: 0 18px 45px rgba(91, 63, 10, 0.08);
  position: relative;
  overflow: hidden;
  animation: cphPdHeroBoxIn 0.85s ease both;
}

.cph-pd-hero-box::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -85px;
  top: -95px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.10);
  animation: cphPdHeroCircle 6s ease-in-out infinite;
}

.cph-pd-hero-box::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  left: -45px;
  bottom: -55px;
  border-radius: 50%;
  background: rgba(184, 132, 31, 0.08);
  animation: cphPdHeroCircleSmall 7s ease-in-out infinite;
}

.cph-pd-hero-top,
.cph-pd-tag-wrap,
.cph-pd-hero-box h1,
.cph-pd-hero-box p {
  position: relative;
  z-index: 2;
}

.cph-pd-hero-top,
.cph-pd-tag-wrap {
  display: block;
  width: 100%;
}

.cph-pd-breadcrumb {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 15px;
  border-radius: 999px;
  animation: cphPdBreadcrumbIn 0.8s ease both 0.1s;
}

.cph-pd-breadcrumb a,
.cph-pd-breadcrumb span,
.cph-pd-breadcrumb i {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.cph-pd-breadcrumb a {
  color: #b8841f;
}

.cph-pd-breadcrumb i {
  font-size: 11px;
  color: #9b8a68;
}

.cph-pd-breadcrumb span {
  color: #1f1606;
}

.cph-pd-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fffaf0;
  color: #b8841f;
  border: 1px solid rgba(214, 166, 66, 0.22);
  padding: 9px 17px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
  animation: cphPdTagIn 0.8s ease both 0.2s;
}

.cph-pd-tag i {
  animation: cphPdIconPulse 2.8s ease-in-out infinite;
}

.cph-pd-hero-box h1 {
  color: #1f1606;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.3px;
  margin-bottom: 12px;
  animation: cphPdTitleIn 0.85s ease both 0.3s;
}

.cph-pd-hero-box p {
  max-width: 590px;
  margin: 0 auto;
  color: #66583a;
  font-size: 16px;
  line-height: 1.7;
  animation: cphPdTextIn 0.85s ease both 0.4s;
}

/* Animations */
@keyframes cphPdHeroBoxIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

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

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

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

@keyframes cphPdTagIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }

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

@keyframes cphPdTitleIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes cphPdTextIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@keyframes cphPdHeroCircle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-18px, 18px) scale(1.12);
  }
}

@keyframes cphPdHeroCircleSmall {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(18px, -14px) scale(1.15);
  }
}

@keyframes cphPdIconPulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.22);
  }
}

@media (max-width: 600px) {
  .cph-pd-hero {
    padding: 38px 0 25px;
  }

  .cph-pd-hero-box {
    padding: 30px 18px;
    border-radius: 24px;
  }

  .cph-pd-hero-box h1 {
    font-size: 35px;
  }

  .cph-pd-breadcrumb {
    border-radius: 18px;
  }
}

.cph-pd-showcase {
  position: relative;
  padding: 95px 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(214, 166, 66, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  overflow: hidden;
}

.cph-pd-showcase-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

/* Image Area */
.cph-pd-image-area {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cphPdImageAreaIn 0.9s ease both;
}

.cph-pd-product-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(214, 166, 66, 0.18), rgba(255, 242, 204, 0.45), transparent 68%);
  animation: cphPdGlowPulse 4s ease-in-out infinite;
}

.cph-pd-image-card {
  position: relative;
  z-index: 3;
  width: min(480px, 92%);
  height: 470px;
  border-radius: 38px;
  background: #fff;
  border: 1px solid rgba(214, 169, 74, 0.22);
  box-shadow: 0 28px 75px rgba(91, 63, 10, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
  animation: cphPdProductFloat 4s ease-in-out infinite;
}

.cph-pd-image-card::before {
  display: none;
}

.cph-pd-image-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  transition: transform 0.4s ease;
}

.cph-pd-image-card:hover img {
  transform: scale(1.06) translateY(-7px);
}

/* Floating Badges */
.cph-pd-floating-badge {
  position: absolute;
  z-index: 5;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(214, 166, 66, 0.20);
  box-shadow: 0 18px 45px rgba(91, 63, 10, 0.12);
  border-radius: 999px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #1f1606;
  font-size: 14px;
  font-weight: 800;
}

.cph-pd-floating-badge i {
  color: #b8841f;
}

.cph-pd-badge-one {
  top: 74px;
  left: 34px;
  animation: cphPdBadgeFloatOne 3.4s ease-in-out infinite;
}

.cph-pd-badge-two {
  right: 18px;
  top: 220px;
  animation: cphPdBadgeFloatTwo 3.8s ease-in-out infinite;
}

.cph-pd-badge-three {
  left: 58px;
  bottom: 88px;
  animation: cphPdBadgeFloatThree 4.1s ease-in-out infinite;
}

/* Details Area */
.cph-pd-details-area {
  animation: cphPdDetailsIn 0.9s ease both;
}

.cph-pd-category {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cph-pd-details-area h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.4px;
  color: #1f1606;
  margin-bottom: 16px;
}

.cph-pd-details-area > p {
  max-width: 520px;
  color: #66583a;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.cph-pd-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.cph-pd-rating div {
  display: flex;
  gap: 4px;
  color: #d6a642;
}

.cph-pd-rating span {
  color: #66583a;
  font-size: 14px;
  font-weight: 700;
}

.cph-pd-highlights {
  display: grid;
  gap: 13px;
  margin-bottom: 30px;
}

.cph-pd-highlights div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(214, 166, 66, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 12px 28px rgba(91, 63, 10, 0.06);
  animation: cphPdHighlightIn 0.8s ease both;
}

.cph-pd-highlights div:nth-child(2) {
  animation-delay: 0.12s;
}

.cph-pd-highlights div:nth-child(3) {
  animation-delay: 0.24s;
}

.cph-pd-highlights i {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #fff2cc;
  color: #b8841f;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.cph-pd-highlights span {
  color: #1f1606;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

/* Buttons */
.cph-pd-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cph-pd-primary-btn,
.cph-pd-secondary-btn {
  height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: 0.3s ease;
}

.cph-pd-primary-btn {
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(184, 132, 31, 0.26);
}

.cph-pd-secondary-btn {
  background: #ffffff;
  color: #1f1606;
  border: 1px solid rgba(214, 166, 66, 0.22);
}

.cph-pd-primary-btn:hover,
.cph-pd-secondary-btn:hover {
  transform: translateY(-4px);
}

.cph-pd-primary-btn:hover i {
  transform: rotate(-8deg);
}

.cph-pd-secondary-btn:hover i {
  transform: rotate(-10deg);
}

.cph-pd-primary-btn i,
.cph-pd-secondary-btn i {
  transition: 0.3s ease;
}

/* Animations */
@keyframes cphPdImageAreaIn {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }

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

@keyframes cphPdDetailsIn {
  from {
    opacity: 0;
    transform: translateX(36px);
  }

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

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

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

@keyframes cphPdGlowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

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

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

@keyframes cphPdBadgeFloatTwo {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-12px);
  }
}

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

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

@keyframes cphPdHighlightIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

/* Responsive */
@media (max-width: 950px) {
  .cph-pd-showcase-wrap {
    grid-template-columns: 1fr;
  }

  .cph-pd-showcase {
    padding: 70px 0;
  }

  .cph-pd-image-area {
    min-height: 500px;
  }
}

@media (max-width: 600px) {
  .cph-pd-image-area {
    min-height: auto;
    padding: 40px 0;
  }

  .cph-pd-image-card {
    height: 360px;
    border-radius: 28px;
  }

  .cph-pd-floating-badge {
    display: none;
  }

  .cph-pd-actions a {
    width: 100%;
  }

  .cph-pd-rating {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

.cph-pd-features-section {
  position: relative;
  padding: 95px 0;
  background:
    radial-gradient(circle at 88% 20%, rgba(214, 166, 66, 0.10), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  overflow: hidden;
}

.cph-pd-features-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
  animation: cphPdFeatureHeadIn 0.85s ease both;
}

.cph-pd-features-head span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cph-pd-features-head h2 {
  color: #1f1606;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.4px;
}

.cph-pd-feature-timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.cph-pd-feature-line {
  position: absolute;
  left: 31px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(
    180deg,
    #d6a642,
    rgba(214, 166, 66, 0.15)
  );
  animation: cphPdFeatureLineIn 1.2s ease both;
}

.cph-pd-feature-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  animation: cphPdFeatureStepIn 0.85s ease both;
}

.cph-pd-feature-step:nth-child(3) {
  animation-delay: 0.12s;
}

.cph-pd-feature-step:nth-child(4) {
  animation-delay: 0.24s;
}

.cph-pd-feature-step:nth-child(5) {
  animation-delay: 0.36s;
}

.cph-pd-feature-step:nth-child(6) {
  animation-delay: 0.48s;
}

.cph-pd-feature-dot {
  position: relative;
  z-index: 3;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d6a642, #b8841f);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 23px;
  box-shadow: 0 14px 30px rgba(184, 132, 31, 0.22);
  animation: cphPdFeatureIconFloat 3s ease-in-out infinite;
}

.cph-pd-feature-step:nth-child(3) .cph-pd-feature-dot {
  animation-delay: 0.25s;
}

.cph-pd-feature-step:nth-child(4) .cph-pd-feature-dot {
  animation-delay: 0.5s;
}

.cph-pd-feature-step:nth-child(5) .cph-pd-feature-dot {
  animation-delay: 0.75s;
}

.cph-pd-feature-step:nth-child(6) .cph-pd-feature-dot {
  animation-delay: 1s;
}

.cph-pd-feature-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(214, 166, 66, 0.18);
  border-radius: 26px;
  padding: 24px 26px;
  box-shadow: 0 16px 38px rgba(91, 63, 10, 0.08);
  transition: 0.35s ease;
}

.cph-pd-feature-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -65px;
  top: -65px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.10);
  transition: 0.35s ease;
}

.cph-pd-feature-step:hover .cph-pd-feature-card {
  transform: translateX(10px);
  box-shadow: 0 26px 60px rgba(91, 63, 10, 0.14);
  border-color: rgba(184, 132, 31, 0.34);
}

.cph-pd-feature-step:hover .cph-pd-feature-card::before {
  transform: scale(1.45);
  background: rgba(214, 166, 66, 0.16);
}

.cph-pd-feature-card small,
.cph-pd-feature-card h3,
.cph-pd-feature-card p {
  position: relative;
  z-index: 2;
}

.cph-pd-feature-card small {
  display: inline-block;
  color: #b8841f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cph-pd-feature-card h3 {
  color: #1f1606;
  font-size: 21px;
  margin-bottom: 8px;
  transition: 0.3s ease;
}

.cph-pd-feature-card p {
  color: #66583a;
  font-size: 15px;
  line-height: 1.7;
}

.cph-pd-feature-step:hover h3 {
  color: #b8841f;
}

/* Animations */
@keyframes cphPdFeatureHeadIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes cphPdFeatureLineIn {
  from {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  to {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

@keyframes cphPdFeatureStepIn {
  from {
    opacity: 0;
    transform: translateX(32px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes cphPdFeatureIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-7px) rotate(4deg);
  }
}

/* Responsive */
@media (max-width: 700px) {
  .cph-pd-features-section {
    padding: 70px 0;
  }

  .cph-pd-feature-step {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cph-pd-feature-line {
    display: none;
  }

  .cph-pd-feature-step:hover .cph-pd-feature-card {
    transform: translateY(-6px);
  }
}

.cph-pd-specs-section {
  padding: 95px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 166, 66, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  overflow: hidden;
}

.cph-pd-specs-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: center;
}

.cph-pd-specs-left {
  animation: cphPdSpecsLeftIn 0.9s ease both;
}

.cph-pd-specs-left span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cph-pd-specs-left h2 {
  max-width: 430px;
  color: #1f1606;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.4px;
}

.cph-pd-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  animation: cphPdSpecsGridIn 0.9s ease both;
}

.cph-pd-spec-item {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(214, 166, 66, 0.18);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(91, 63, 10, 0.07);
  transition: 0.35s ease;
  animation: cphPdSpecItemIn 0.75s ease both;
}

.cph-pd-spec-item:nth-child(2) {
  animation-delay: 0.08s;
}

.cph-pd-spec-item:nth-child(3) {
  animation-delay: 0.16s;
}

.cph-pd-spec-item:nth-child(4) {
  animation-delay: 0.24s;
}

.cph-pd-spec-item:nth-child(5) {
  animation-delay: 0.32s;
}

.cph-pd-spec-item:nth-child(6) {
  animation-delay: 0.40s;
}

.cph-pd-spec-item::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -42px;
  top: -42px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.10);
  transition: 0.35s ease;
}

.cph-pd-spec-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 52px rgba(91, 63, 10, 0.13);
  border-color: rgba(184, 132, 31, 0.34);
}

.cph-pd-spec-item:hover::before {
  transform: scale(1.6);
  background: rgba(214, 166, 66, 0.16);
}

.cph-pd-spec-item small,
.cph-pd-spec-item strong {
  position: relative;
  z-index: 2;
  display: block;
}

.cph-pd-spec-item small {
  color: #b8841f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 8px;
}

.cph-pd-spec-item strong {
  color: #1f1606;
  font-size: 16px;
  line-height: 1.45;
}

/* Animations */
@keyframes cphPdSpecsLeftIn {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }

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

@keyframes cphPdSpecsGridIn {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

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

@keyframes cphPdSpecItemIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

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

/* Responsive */
@media (max-width: 850px) {
  .cph-pd-specs-wrap {
    grid-template-columns: 1fr;
  }

  .cph-pd-specs-section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .cph-pd-specs-grid {
    grid-template-columns: 1fr;
  }
}

.cph-pd-cta-section {
  padding: 95px 0;
  background: #ffffff;
  overflow: hidden;
}

.cph-pd-cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 54px 58px;
  background:
    radial-gradient(circle at 88% 20%, rgba(255,255,255,0.22), transparent 26%),
    linear-gradient(135deg, #1f1606 0%, #b8841f 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  box-shadow: 0 30px 80px rgba(91, 63, 10, 0.22);
  animation: cphPdCtaUp 0.9s ease both;
}

.cph-pd-cta-box::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  top: -150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  animation: cphPdCtaCircleOne 6s ease-in-out infinite;
}

.cph-pd-cta-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: 45%;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  animation: cphPdCtaCircleTwo 7s ease-in-out infinite;
}

.cph-pd-cta-content,
.cph-pd-cta-actions {
  position: relative;
  z-index: 2;
}

.cph-pd-cta-content span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cph-pd-cta-content h2 {
  max-width: 720px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: #ffffff;
  margin-bottom: 14px;
}

.cph-pd-cta-content p {
  max-width: 620px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.7;
}

.cph-pd-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cph-pd-cta-primary,
.cph-pd-cta-secondary {
  height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.3s ease;
}

.cph-pd-cta-primary {
  background: #ffffff;
  color: #b8841f;
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}

.cph-pd-cta-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}

.cph-pd-cta-primary i,
.cph-pd-cta-secondary i {
  transition: 0.3s ease;
}

.cph-pd-cta-primary:hover,
.cph-pd-cta-secondary:hover {
  transform: translateY(-3px);
}

.cph-pd-cta-primary:hover i {
  transform: translateX(5px);
}

.cph-pd-cta-secondary:hover i {
  transform: rotate(-10deg);
}

@keyframes cphPdCtaUp {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
  }

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

@keyframes cphPdCtaCircleOne {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-28px, 22px) scale(1.09);
  }
}

@keyframes cphPdCtaCircleTwo {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(24px, -18px) scale(1.12);
  }
}

@media (max-width: 900px) {
  .cph-pd-cta-box {
    grid-template-columns: 1fr;
    padding: 38px 24px;
  }

  .cph-pd-cta-actions {
    width: 100%;
  }

  .cph-pd-cta-primary,
  .cph-pd-cta-secondary {
    width: 100%;
  }

  .cph-pd-cta-section {
    padding: 70px 0;
  }
}

.cph-terms-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 166, 66, 0.10), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.cph-terms-box {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(214, 166, 66, 0.18);
  border-radius: 34px;
  padding: 46px;
  box-shadow: 0 24px 65px rgba(91, 63, 10, 0.10);
}

.cph-terms-head {
  text-align: center;
  margin-bottom: 42px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(214, 166, 66, 0.18);
}

.cph-terms-head span {
  display: inline-block;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cph-terms-head h1 {
  color: #1f1606;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.4px;
  margin-bottom: 14px;
}

.cph-terms-head p {
  max-width: 680px;
  margin: 0 auto;
  color: #66583a;
  font-size: 16px;
  line-height: 1.75;
}

.cph-terms-content h2 {
  color: #1f1606;
  font-size: 22px;
  margin: 30px 0 10px;
  line-height: 1.35;
}

.cph-terms-content p {
  color: #66583a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.cph-terms-contact {
  margin-top: 42px;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, #fffaf0, #ffffff);
  border: 1px solid rgba(214, 166, 66, 0.20);
}

.cph-terms-contact h2 {
  margin-top: 0;
}

.cph-terms-contact-grid {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.cph-terms-contact-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1f1606;
  background: #ffffff;
  border: 1px solid rgba(214, 166, 66, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.cph-terms-contact-grid a:hover {
  transform: translateX(6px);
  color: #b8841f;
  box-shadow: 0 14px 30px rgba(91, 63, 10, 0.08);
}

.cph-terms-contact-grid i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 12px;
  background: #fff2cc;
  color: #b8841f;
  display: grid;
  place-items: center;
}

@media (max-width: 600px) {
  .cph-terms-section {
    padding: 65px 0;
  }

  .cph-terms-box {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .cph-terms-content h2 {
    font-size: 20px;
  }

  .cph-terms-content p {
    font-size: 15px;
  }
}

.cph-privacy-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 166, 66, 0.10), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.cph-privacy-box {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(214, 166, 66, 0.18);
  border-radius: 34px;
  padding: 46px;
  box-shadow: 0 24px 65px rgba(91, 63, 10, 0.10);
}

.cph-privacy-head {
  text-align: center;
  margin-bottom: 42px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(214, 166, 66, 0.18);
}

.cph-privacy-head span {
  display: inline-block;
  background: #fff2cc;
  color: #b8841f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cph-privacy-head h1 {
  color: #1f1606;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.4px;
  margin-bottom: 14px;
}

.cph-privacy-head p {
  max-width: 700px;
  margin: 0 auto;
  color: #66583a;
  font-size: 16px;
  line-height: 1.75;
}

.cph-privacy-content h2 {
  color: #1f1606;
  font-size: 22px;
  margin: 30px 0 10px;
  line-height: 1.35;
}

.cph-privacy-content p {
  color: #66583a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.cph-privacy-content ul {
  margin: 14px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.cph-privacy-content li {
  position: relative;
  color: #66583a;
  font-size: 15.5px;
  line-height: 1.7;
  padding-left: 30px;
}

.cph-privacy-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff2cc;
  color: #b8841f;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.cph-privacy-contact {
  margin-top: 42px;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, #fffaf0, #ffffff);
  border: 1px solid rgba(214, 166, 66, 0.20);
}

.cph-privacy-contact h2 {
  margin-top: 0;
}

.cph-privacy-contact-grid {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.cph-privacy-contact-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1f1606;
  background: #ffffff;
  border: 1px solid rgba(214, 166, 66, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.cph-privacy-contact-grid a:hover {
  transform: translateX(6px);
  color: #b8841f;
  box-shadow: 0 14px 30px rgba(91, 63, 10, 0.08);
}

.cph-privacy-contact-grid i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 12px;
  background: #fff2cc;
  color: #b8841f;
  display: grid;
  place-items: center;
}

@media (max-width: 600px) {
  .cph-privacy-section {
    padding: 65px 0;
  }

  .cph-privacy-box {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .cph-privacy-content h2 {
    font-size: 20px;
  }

  .cph-privacy-content p,
  .cph-privacy-content li {
    font-size: 15px;
  }
}

.cph-success-message {
  background: #e9f9ef;
  color: #146c2e;
  border: 1px solid #b8e7c7;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 600;
}

/* =========================================================
   CROWN PEAKHEALTH HERO SLIDER
   DESKTOP + MOBILE BACKGROUND VERSION
========================================================= */

.cph-hero-slider {
  position: relative;
  overflow: hidden;
  background: #fffaf0;
}

.cph-hero-slide {
  display: none;
  position: relative;
}

.cph-hero-slide.active {
  display: block;
  animation: cphSlideFade 0.65s ease both;
}


/* =========================================================
   DESKTOP PRODUCT POSITIONING
========================================================= */

.cph-product-img--mobility {
  width: 250px;
  right: 150px;
  bottom: 130px;
}


/* =========================================================
   DESKTOP SLIDE ENTRANCE ANIMATIONS
========================================================= */

.cph-hero-slide.active .cph-trust-badge {
  animation: cphHeroContentIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.cph-hero-slide.active .cph-hero-left h1 {
  animation: cphHeroContentIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.13s both;
}

.cph-hero-slide.active .cph-hero-left > p {
  animation: cphHeroContentIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.21s both;
}

.cph-hero-slide.active .cph-hero-actions {
  animation: cphHeroContentIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.29s both;
}

.cph-hero-slide.active .cph-features {
  animation: cphHeroContentIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.37s both;
}

.cph-hero-slide.active .cph-hero-right {
  animation: cphHeroVisualIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}


/* Subtle image floating motion */

.cph-hero-slide.active .cph-product-img {
  animation: cphHeroProductFloat 5.5s ease-in-out 0.9s infinite;
}


/* Floating information cards */

.cph-hero-slide.active .cph-card-top {
  animation: cphHeroCardTopIn 0.75s ease 0.3s both;
}

.cph-hero-slide.active .cph-card-bottom {
  animation: cphHeroCardBottomIn 0.75s ease 0.42s both;
}


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

.cph-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 20;

  width: 46px;
  height: 46px;

  padding: 0;
  border: none;
  border-radius: 50%;

  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, 0.94);
  color: #b8841f;

  cursor: pointer;
  transform: translateY(-50%);

  box-shadow: 0 14px 34px rgba(91, 63, 10, 0.16);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.cph-slider-btn:hover {
  background: #b8841f;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(91, 63, 10, 0.22);
}

.cph-slider-btn:focus-visible {
  outline: 3px solid rgba(214, 166, 66, 0.45);
  outline-offset: 4px;
}

.cph-prev {
  left: 24px;
}

.cph-next {
  right: 24px;
}


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

.cph-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 20;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  transform: translateX(-50%);
}

.cph-slider-dots button {
  width: 10px;
  height: 10px;

  padding: 0;
  border: none;
  border-radius: 999px;

  background: rgba(184, 132, 31, 0.3);
  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.cph-slider-dots button:hover {
  transform: scale(1.12);
  background: rgba(184, 132, 31, 0.55);
}

.cph-slider-dots button.active {
  width: 30px;
  background: #b8841f;
}

.cph-slider-dots button:focus-visible {
  outline: 2px solid #b8841f;
  outline-offset: 3px;
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes cphSlideFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes cphHeroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes cphHeroVisualIn {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

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

  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

@keyframes cphHeroCardTopIn {
  from {
    opacity: 0;
    transform: translate(24px, -12px);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes cphHeroCardBottomIn {
  from {
    opacity: 0;
    transform: translate(-24px, 12px);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}


/* =========================================================
   TABLET AND MOBILE
   PRODUCT IMAGE BECOMES BACKGROUND
========================================================= */

@media (max-width: 991px) {

  .cph-hero-slider {
    background: #fffaf0;
  }

  .cph-hero-slide {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 690px;
    background: #fffaf0;
  }


  /* Mobile background product image */

  .cph-hero-slide::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 0;

    pointer-events: none;

    background-image: var(--cph-mobile-bg);
    background-repeat: no-repeat;
    background-position: center 10%;
    background-size: min(88vw, 510px) auto;

    opacity: 0;
    filter:
      saturate(0.94)
      contrast(1.03);

    transform: scale(1.1) translateY(-8px);
  }

  .cph-hero-slide.active::before {
    animation: cphMobileBackgroundIn 1s
      cubic-bezier(0.22, 1, 0.36, 1) both;
  }


  /* Overlay for text readability */

  .cph-hero-slide::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    pointer-events: none;

    background:
      radial-gradient(
        circle at 50% 13%,
        rgba(255, 242, 204, 0.15) 0%,
        rgba(255, 242, 204, 0.1) 24%,
        transparent 48%
      ),
      linear-gradient(
        180deg,
        rgba(255, 250, 240, 0.44) 0%,
        rgba(255, 250, 240, 0.58) 28%,
        rgba(255, 250, 240, 0.82) 50%,
        rgba(255, 250, 240, 0.97) 75%,
        #fffaf0 100%
      );
  }


  /* Hero layout */

  .cph-hero-slider .cph-hero {
    position: relative;
    z-index: 2;

    width: min(1180px, 90%);
    min-height: 690px;

    margin: 0 auto;
    padding: 58px 0 78px;

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

    text-align: center;
  }


  /* Text section */

  .cph-hero-slider .cph-hero-left {
    order: initial;

    width: 100%;
    max-width: 720px;

    margin: 0 auto;
    padding: 0;

    text-align: center;
  }

  .cph-hero-slider .cph-trust-badge {
    margin-right: auto;
    margin-left: auto;
  }

  .cph-hero-slider .cph-hero-left > p {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .cph-hero-slider .cph-hero-actions,
  .cph-hero-slider .cph-features {
    justify-content: center;
  }


  /* Hide desktop image column */

  .cph-hero-slider .cph-hero-right {
    display: none !important;
  }


  /* Hide slider arrows on tablet/mobile */

  .cph-hero-slider .cph-slider-btn {
    display: none !important;
  }


  /* Keep dots visible */

  .cph-hero-slider .cph-slider-dots {
    display: flex !important;
    bottom: 20px;

    padding: 8px 11px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 25px rgba(91, 63, 10, 0.1);

    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .cph-hero-slider .cph-slider-dots button {
    display: block !important;
    background: rgba(184, 132, 31, 0.32);
  }

  .cph-hero-slider .cph-slider-dots button.active {
    width: 28px;
    background: #b8841f;
  }

}


/* Mobile background animation */

@keyframes cphMobileBackgroundIn {
  from {
    opacity: 0;
    transform: scale(1.1) translateY(-8px);
  }

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


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

  .cph-hero-slide,
  .cph-hero-slider .cph-hero {
    min-height: 700px;
  }

  .cph-hero-slider .cph-hero {
    width: calc(100% - 36px);
    padding: 48px 0 76px;
  }

  .cph-hero-slide::before {
    background-position: center 7%;
    background-size: min(108vw, 435px) auto;
  }


  /* Better mobile heading wrapping */

  .cph-hero-slider .cph-hero-left h1 br {
    display: none;
  }

  .cph-hero-slider .cph-hero-left h1 {
    max-width: 500px;

    margin-right: auto;
    margin-left: auto;

    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .cph-hero-slider .cph-hero-left > p {
    font-size: 15.5px;
    line-height: 1.65;
  }


  /* Full-width buttons */

  .cph-hero-slider .cph-hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .cph-hero-slider .cph-primary-btn,
  .cph-hero-slider .cph-secondary-btn {
    width: 100%;
  }


  /* Feature chips */

  .cph-hero-slider .cph-features {
    gap: 9px;
  }

  .cph-hero-slider .cph-feature {
    padding: 9px 12px;
  }

  .cph-hero-slider .cph-feature h4 {
    font-size: 13px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

  .cph-hero-slide,
  .cph-hero-slider .cph-hero {
    min-height: 725px;
  }

  .cph-hero-slider .cph-hero {
    width: calc(100% - 28px);
  }

  .cph-hero-slide::before {
    background-size: 430px auto;
  }

  .cph-hero-slider .cph-hero-left h1 {
    font-size: 31px;
  }

  .cph-hero-slider .cph-trust-badge {
    font-size: 12px;
  }

}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .cph-hero-slide,
  .cph-hero-slide::before,
  .cph-hero-slide .cph-trust-badge,
  .cph-hero-slide .cph-hero-left h1,
  .cph-hero-slide .cph-hero-left > p,
  .cph-hero-slide .cph-hero-actions,
  .cph-hero-slide .cph-features,
  .cph-hero-slide .cph-hero-right,
  .cph-hero-slide .cph-product-img,
  .cph-hero-slide .cph-float-card {
    animation: none !important;
    transition: none !important;
  }

  .cph-hero-slide.active::before {
    opacity: 0.24;
    transform: none;
  }

}

/* =========================================================
   CLEAN MOBILE HERO
   - Sharp text and buttons
   - Product image only in background
   - No circle, blur, filter, or overlay
   - Features hidden
========================================================= */

@media (max-width: 991px) {

  .cph-hero-slider {
    position: relative;
    overflow: hidden;
    background: #fffaf0;
  }

  .cph-hero-slider .cph-hero-slide {
    position: relative;
    overflow: hidden;
    min-height: 610px;
    background: #fffaf0;
  }

  /* Remove all previous mobile pseudo backgrounds */
  .cph-hero-slider .cph-hero-slide::before,
  .cph-hero-slider .cph-hero-slide::after,
  .cph-hero-slider .cph-hero::before,
  .cph-hero-slider .cph-hero::after {
    content: none !important;
    display: none !important;
  }

  /* Main hero layout */
  .cph-hero-slider .cph-hero {
    position: relative;
    z-index: 1;

    width: min(100% - 40px, 700px);
    min-height: 610px;

    margin: 0 auto;
    padding: 55px 0 75px;

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

    text-align: center;
    overflow: hidden;

    filter: none !important;
    opacity: 1 !important;

    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  /* Sharp text content */
  .cph-hero-slider .cph-hero-left {
    position: relative;
    z-index: 5;

    order: initial;
    width: 100%;
    max-width: 650px;

    margin: 0 auto;
    padding: 0;

    text-align: center;

    opacity: 1 !important;
    filter: none !important;

    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .cph-hero-slider .cph-hero-left h1,
  .cph-hero-slider .cph-hero-left p,
  .cph-hero-slider .cph-trust-badge,
  .cph-hero-slider .cph-hero-actions,
  .cph-hero-slider .cph-primary-btn,
  .cph-hero-slider .cph-secondary-btn {
    position: relative;
    z-index: 6;

    opacity: 1 !important;
    filter: none !important;

    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  /* Image container becomes background layer */
  .cph-hero-slider .cph-hero-right {
    display: block !important;

    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;

    z-index: 0;

    overflow: hidden;
    pointer-events: none;

    opacity: 1 !important;
    transform: none !important;
    animation: none !important;

    filter: none !important;

    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  /* Remove circle, dots and floating cards */
  .cph-hero-slider .cph-bg-circle,
  .cph-hero-slider .cph-dots,
  .cph-hero-slider .cph-float-card,
  .cph-hero-slider .cph-card-top,
  .cph-hero-slider .cph-card-bottom {
    display: none !important;
  }

  /* Product image only */
  .cph-hero-slider .cph-product-img {
    display: block !important;

    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;

    width: min(105vw, 520px) !important;
    max-width: none !important;

    height: auto !important;
    max-height: 500px !important;

    margin: 0 !important;

    object-fit: contain !important;
    object-position: center center !important;

    /*
     * Only the image is transparent.
     * Text and buttons stay fully sharp.
     */
    opacity: 0.2 !important;

    transform: translate(-50%, -50%) !important;
    transform-origin: center center !important;

    filter: none !important;
    mix-blend-mode: normal !important;

    animation: none !important;

    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  /* Slide 2 image sizing */
  .cph-hero-slider
  .cph-hero-slide:nth-child(2)
  .cph-product-img {
    width: min(80vw, 380px) !important;
  }

  /* Slide 3 image sizing */
  .cph-hero-slider
  .cph-hero-slide:nth-child(3)
  .cph-product-img {
    width: min(100vw, 480px) !important;
  }

  /* Hide features on mobile */
  .cph-hero-slider .cph-features {
    display: none !important;
  }

  .cph-hero-slider .cph-trust-badge {
    margin-right: auto;
    margin-left: auto;
  }

  .cph-hero-slider .cph-hero-left h1 {
    margin-top: 20px;
  }

  .cph-hero-slider .cph-hero-left > p {
    max-width: 580px;

    margin-right: auto;
    margin-left: auto;

    color: #5a4a2b;
  }

  .cph-hero-slider .cph-hero-actions {
    justify-content: center;
  }

  /* Hide desktop arrows */
  .cph-hero-slider .cph-slider-btn {
    display: none !important;
  }

  /* Keep slider dots */
  .cph-hero-slider .cph-slider-dots {
    display: flex !important;
    z-index: 30;
    bottom: 20px;
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

  .cph-hero-slider .cph-hero-slide,
  .cph-hero-slider .cph-hero {
    min-height: 600px;
  }

  .cph-hero-slider .cph-hero {
    width: calc(100% - 32px);
    padding: 45px 0 70px;
  }

  .cph-hero-slider .cph-product-img {
    width: 490px !important;
    max-height: 470px !important;
    opacity: 0.18 !important;
  }

  .cph-hero-slider
  .cph-hero-slide:nth-child(2)
  .cph-product-img {
    width: 330px !important;
  }

  .cph-hero-slider
  .cph-hero-slide:nth-child(3)
  .cph-product-img {
    width: 440px !important;
  }

  .cph-hero-slider .cph-hero-left h1 br {
    display: none;
  }

  .cph-hero-slider .cph-hero-left h1 {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .cph-hero-slider .cph-hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .cph-hero-slider .cph-primary-btn,
  .cph-hero-slider .cph-secondary-btn {
    width: 100%;
  }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

  .cph-hero-slider .cph-product-img {
    width: 440px !important;
  }

  .cph-hero-slider
  .cph-hero-slide:nth-child(2)
  .cph-product-img {
    width: 300px !important;
  }

  .cph-hero-slider
  .cph-hero-slide:nth-child(3)
  .cph-product-img {
    width: 400px !important;
  }

  .cph-hero-slider .cph-hero-left h1 {
    font-size: 31px;
  }
}

/* =========================================================
   CROWN PEAKHEALTH FOOTER ANIMATIONS
   Animation only — no design or layout changes
========================================================= */

/*
 * Elements are hidden only after JavaScript confirms
 * that the animation system is available.
 */
.cph-footer.cph-footer-animate-ready .cph-footer-brand,
.cph-footer.cph-footer-animate-ready .cph-footer-col,
.cph-footer.cph-footer-animate-ready .cph-footer-bottom {
  opacity: 0;
  will-change: transform, opacity;
}

/* Brand enters from the left */
.cph-footer.cph-footer-animate-ready .cph-footer-brand {
  transform: translateX(-35px);
}

/* Footer columns enter upward */
.cph-footer.cph-footer-animate-ready .cph-footer-col {
  transform: translateY(32px);
}

/* Bottom row enters upward */
.cph-footer.cph-footer-animate-ready .cph-footer-bottom {
  transform: translateY(22px);
}

/* Start animations when footer becomes visible */
.cph-footer.cph-footer-is-visible .cph-footer-brand {
  animation: cphFooterBrandIn 0.8s
    cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cph-footer.cph-footer-is-visible .cph-footer-col:nth-child(2) {
  animation: cphFooterColumnIn 0.75s
    cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.cph-footer.cph-footer-is-visible .cph-footer-col:nth-child(3) {
  animation: cphFooterColumnIn 0.75s
    cubic-bezier(0.22, 1, 0.36, 1) 0.24s forwards;
}

.cph-footer.cph-footer-is-visible .cph-footer-col:nth-child(4) {
  animation: cphFooterColumnIn 0.75s
    cubic-bezier(0.22, 1, 0.36, 1) 0.36s forwards;
}

.cph-footer.cph-footer-is-visible .cph-footer-bottom {
  animation: cphFooterBottomIn 0.7s
    cubic-bezier(0.22, 1, 0.36, 1) 0.48s forwards;
}

/* Logo animation after footer appears */
.cph-footer.cph-footer-is-visible .cph-footer-logo img {
  animation: cphFooterLogoIn 0.9s
      cubic-bezier(0.22, 1, 0.36, 1) 0.1s both,
    cphFooterLogoFloat 4s ease-in-out 1.1s infinite;
}

/* Headings receive a small entrance */
.cph-footer.cph-footer-is-visible .cph-footer-col h3 {
  animation: cphFooterHeadingIn 0.6s ease both;
}

.cph-footer.cph-footer-is-visible .cph-footer-col:nth-child(2) h3 {
  animation-delay: 0.25s;
}

.cph-footer.cph-footer-is-visible .cph-footer-col:nth-child(3) h3 {
  animation-delay: 0.37s;
}

.cph-footer.cph-footer-is-visible .cph-footer-col:nth-child(4) h3 {
  animation-delay: 0.49s;
}

/* Individual links appear with a small stagger */
.cph-footer.cph-footer-is-visible
  .cph-footer-col:nth-child(2)
  > a:nth-of-type(1) {
  animation: cphFooterLinkIn 0.55s ease 0.3s both;
}

.cph-footer.cph-footer-is-visible
  .cph-footer-col:nth-child(2)
  > a:nth-of-type(2) {
  animation: cphFooterLinkIn 0.55s ease 0.36s both;
}

.cph-footer.cph-footer-is-visible
  .cph-footer-col:nth-child(2)
  > a:nth-of-type(3) {
  animation: cphFooterLinkIn 0.55s ease 0.42s both;
}

.cph-footer.cph-footer-is-visible
  .cph-footer-col:nth-child(2)
  > a:nth-of-type(4) {
  animation: cphFooterLinkIn 0.55s ease 0.48s both;
}

.cph-footer.cph-footer-is-visible
  .cph-footer-col:nth-child(2)
  > a:nth-of-type(5) {
  animation: cphFooterLinkIn 0.55s ease 0.54s both;
}

.cph-footer.cph-footer-is-visible
  .cph-footer-col:nth-child(3)
  > a:nth-of-type(1) {
  animation: cphFooterLinkIn 0.55s ease 0.42s both;
}

.cph-footer.cph-footer-is-visible
  .cph-footer-col:nth-child(3)
  > a:nth-of-type(2) {
  animation: cphFooterLinkIn 0.55s ease 0.48s both;
}

.cph-footer.cph-footer-is-visible
  .cph-footer-col:nth-child(3)
  > a:nth-of-type(3) {
  animation: cphFooterLinkIn 0.55s ease 0.54s both;
}

.cph-footer.cph-footer-is-visible
  .cph-footer-col:nth-child(3)
  > a:nth-of-type(4) {
  animation: cphFooterLinkIn 0.55s ease 0.6s both;
}

/* Contact items animate separately */
.cph-footer.cph-footer-is-visible
  .cph-footer-contact
  .cph-contact-item:nth-of-type(1) {
  animation: cphFooterContactIn 0.6s ease 0.52s both;
}

.cph-footer.cph-footer-is-visible
  .cph-footer-contact
  .cph-contact-item:nth-of-type(2) {
  animation: cphFooterContactIn 0.6s ease 0.6s both;
}

.cph-footer.cph-footer-is-visible
  .cph-footer-contact
  .cph-contact-item:nth-of-type(3) {
  animation: cphFooterContactIn 0.6s ease 0.68s both;
}

.cph-footer.cph-footer-is-visible
  .cph-footer-contact
  .cph-contact-item:nth-of-type(4) {
  animation: cphFooterContactIn 0.6s ease 0.76s both;
}

/* Contact icon interaction */
.cph-footer .cph-contact-item span {
  transition: transform 0.3s ease;
}

.cph-footer .cph-contact-item:hover span {
  transform: scale(1.08) rotate(-4deg);
}

/* Existing links keep their original appearance */
.cph-footer .cph-footer-col > a,
.cph-footer .cph-footer-bottom a {
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

/* Small animated underline without changing layout */
.cph-footer .cph-footer-col h3 {
  position: relative;
  width: fit-content;
}

.cph-footer .cph-footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: currentColor;
  border-radius: 20px;

  transition: width 0.5s ease;
}

.cph-footer.cph-footer-is-visible .cph-footer-col h3::after {
  width: 32px;
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes cphFooterBrandIn {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }

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

@keyframes cphFooterColumnIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

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

@keyframes cphFooterBottomIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes cphFooterLogoIn {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.94);
  }

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

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

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

@keyframes cphFooterHeadingIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes cphFooterLinkIn {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }

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

@keyframes cphFooterContactIn {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

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


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .cph-footer.cph-footer-animate-ready .cph-footer-brand,
  .cph-footer.cph-footer-animate-ready .cph-footer-col,
  .cph-footer.cph-footer-animate-ready .cph-footer-bottom,
  .cph-footer .cph-footer-logo img,
  .cph-footer .cph-footer-col h3,
  .cph-footer .cph-footer-col > a,
  .cph-footer .cph-contact-item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================================
   FOOTER MOVING BACKGROUND CIRCLES
   Animation only — no HTML changes required
========================================================= */

.cph-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Keep all footer content above the animated circles */
.cph-footer > .cph-container {
  position: relative;
  z-index: 2;
}

/* Large circle — top right */
.cph-footer::before {
  content: "";
  position: absolute;
  z-index: 0;

  width: 360px;
  height: 360px;

  top: -190px;
  right: -120px;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);

  pointer-events: none;

  animation: cphFooterCircleOne 9s ease-in-out infinite;
}

/* Medium circle — bottom left */
.cph-footer::after {
  content: "";
  position: absolute;
  z-index: 0;

  width: 240px;
  height: 240px;

  left: -110px;
  bottom: -130px;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);

  pointer-events: none;

  animation: cphFooterCircleTwo 11s ease-in-out infinite;
}

/* Additional circles using the container */
.cph-footer > .cph-container::before {
  content: "";
  position: absolute;
  z-index: -1;

  width: 110px;
  height: 110px;

  top: 25%;
  left: 38%;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.025);

  pointer-events: none;

  animation: cphFooterCircleThree 8s ease-in-out infinite;
}

.cph-footer > .cph-container::after {
  content: "";
  position: absolute;
  z-index: -1;

  width: 75px;
  height: 75px;

  right: 27%;
  bottom: 22%;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);

  pointer-events: none;

  animation: cphFooterCircleFour 7s ease-in-out infinite;
}


/* =========================================================
   CIRCLE ANIMATIONS
========================================================= */

@keyframes cphFooterCircleOne {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-38px, 32px) scale(1.1);
  }
}

@keyframes cphFooterCircleTwo {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(45px, -32px) scale(1.12);
  }
}

@keyframes cphFooterCircleThree {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translate(28px, -24px) rotate(90deg);
    opacity: 1;
  }
}

@keyframes cphFooterCircleFour {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.55;
  }

  50% {
    transform: translate(-24px, -28px) scale(1.18);
    opacity: 0.95;
  }
}


/* =========================================================
   MOBILE ADJUSTMENTS
========================================================= */

@media (max-width: 600px) {

  .cph-footer::before {
    width: 260px;
    height: 260px;

    top: -135px;
    right: -120px;
  }

  .cph-footer::after {
    width: 180px;
    height: 180px;

    left: -95px;
    bottom: -90px;
  }

  .cph-footer > .cph-container::before {
    width: 85px;
    height: 85px;

    top: 38%;
    left: 65%;
  }

  .cph-footer > .cph-container::after {
    width: 58px;
    height: 58px;

    right: 72%;
    bottom: 28%;
  }
}


/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  .cph-footer::before,
  .cph-footer::after,
  .cph-footer > .cph-container::before,
  .cph-footer > .cph-container::after {
    animation: none !important;
  }
}

/* =========================================================
   PRODUCTS SIMPLE HERO — MOVING CIRCLES
   No layout or design changes
========================================================= */

.cph-products-simple-box {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Keep content above circles */
.cph-products-simple-breadcrumb,
.cph-products-simple-box h1,
.cph-products-simple-box p {
  position: relative;
  z-index: 2;
}

/* Existing top-right circle */
.cph-products-simple-box::before {
  content: "";
  position: absolute;
  z-index: 0;

  width: 180px;
  height: 180px;

  right: -80px;
  top: -90px;

  border-radius: 50%;
  background: rgba(214, 166, 66, 0.10);

  pointer-events: none;
  will-change: transform;

  animation: cphProductHeroCircleOne 7s ease-in-out infinite;
}

/* Additional bottom-left circle */
.cph-products-simple-box::after {
  content: "";
  position: absolute;
  z-index: 0;

  width: 115px;
  height: 115px;

  left: -48px;
  bottom: -58px;

  border-radius: 50%;
  background: rgba(184, 132, 31, 0.08);
  border: 1px solid rgba(184, 132, 31, 0.10);

  pointer-events: none;
  will-change: transform;

  animation: cphProductHeroCircleTwo 8s ease-in-out infinite;
}


/* Top-right circle movement */
@keyframes cphProductHeroCircleOne {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-35px, 30px) scale(1.12);
  }
}


/* Bottom-left circle movement */
@keyframes cphProductHeroCircleTwo {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(32px, -24px) scale(1.1);
  }
}


/* Mobile adjustment */
@media (max-width: 600px) {
  .cph-products-simple-box::before {
    width: 145px;
    height: 145px;

    right: -68px;
    top: -72px;
  }

  .cph-products-simple-box::after {
    width: 90px;
    height: 90px;

    left: -42px;
    bottom: -45px;
  }
}


/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .cph-products-simple-box::before,
  .cph-products-simple-box::after {
    animation: none !important;
  }
}

/* =========================================================
   PRODUCTS CTA — MOVING CIRCLES
   Animation only
========================================================= */

.cph-products-cta-box {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Disable original static pseudo-element circles */
.cph-products-cta-box::before,
.cph-products-cta-box::after {
  content: none !important;
  display: none !important;
}

/* Keep original content above circles */
.cph-products-cta-content,
.cph-products-cta-actions {
  position: relative;
  z-index: 3;
}

/* Shared moving-circle style */
.cph-products-cta-circle {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

/* Large top-right circle */
.cph-products-cta-circle-one {
  width: 360px;
  height: 360px;

  top: -150px;
  right: -140px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);

  animation: cphProductsCtaCircleOne 7s ease-in-out infinite !important;
}

/* Smaller bottom circle */
.cph-products-cta-circle-two {
  width: 180px;
  height: 180px;

  left: 45%;
  bottom: -90px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.07);

  animation: cphProductsCtaCircleTwo 8s ease-in-out infinite !important;
}


/* Large circle movement */
@keyframes cphProductsCtaCircleOne {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(-25px, 20px, 0) scale(1.06);
  }

  50% {
    transform: translate3d(-55px, 45px, 0) scale(1.14);
  }

  75% {
    transform: translate3d(-30px, 65px, 0) scale(1.08);
  }

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


/* Smaller circle movement */
@keyframes cphProductsCtaCircleTwo {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(30px, -18px, 0) scale(1.08);
  }

  50% {
    transform: translate3d(55px, -42px, 0) scale(1.17);
  }

  75% {
    transform: translate3d(22px, -62px, 0) scale(1.1);
  }

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


/* Mobile adjustments */
@media (max-width: 900px) {

  .cph-products-cta-circle-one {
    width: 270px;
    height: 270px;

    top: -115px;
    right: -115px;
  }

  .cph-products-cta-circle-two {
    width: 135px;
    height: 135px;

    left: -45px;
    bottom: -55px;
  }
}


/* Small mobile */
@media (max-width: 600px) {

  .cph-products-cta-circle-one {
    width: 220px;
    height: 220px;

    top: -95px;
    right: -100px;
  }

  .cph-products-cta-circle-two {
    width: 110px;
    height: 110px;

    left: -38px;
    bottom: -45px;
  }
}

/* =========================================================
   ABOUT HERO — MOVING CIRCLES
========================================================= */

.cph-about-hero-box {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  /* Remove the static radial-gradient circle */
  background:
    linear-gradient(135deg, #1f1606 0%, #b8841f 100%) !important;
}

/* Disable original static pseudo-element circles */
.cph-about-hero-box::before,
.cph-about-hero-box::after {
  content: none !important;
  display: none !important;
}

/* Keep content above circles */
.cph-about-hero-content,
.cph-about-hero-card {
  position: relative;
  z-index: 3;
}

/* Shared circle styling */
.cph-about-moving-circle {
  position: absolute;
  z-index: 1;

  display: block;

  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

/* Large top-right circle */
.cph-about-circle-one {
  width: 360px;
  height: 360px;

  top: -170px;
  right: -140px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);

  animation: cphAboutCircleOneMove 7s ease-in-out infinite;
}

/* Smaller bottom circle */
.cph-about-circle-two {
  width: 190px;
  height: 190px;

  left: 43%;
  bottom: -100px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.07);

  animation: cphAboutCircleTwoMove 8s ease-in-out infinite;
}

/* Large circle movement */
@keyframes cphAboutCircleOneMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(-24px, 20px, 0) scale(1.06);
  }

  50% {
    transform: translate3d(-55px, 48px, 0) scale(1.14);
  }

  75% {
    transform: translate3d(-28px, 68px, 0) scale(1.08);
  }
}

/* Smaller circle movement */
@keyframes cphAboutCircleTwoMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(30px, -18px, 0) scale(1.08);
  }

  50% {
    transform: translate3d(60px, -42px, 0) scale(1.16);
  }

  75% {
    transform: translate3d(25px, -65px, 0) scale(1.09);
  }
}

/* Tablet */
@media (max-width: 850px) {
  .cph-about-circle-one {
    width: 280px;
    height: 280px;

    top: -125px;
    right: -120px;
  }

  .cph-about-circle-two {
    width: 145px;
    height: 145px;

    left: -48px;
    bottom: -60px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cph-about-circle-one {
    width: 230px;
    height: 230px;

    top: -100px;
    right: -105px;
  }

  .cph-about-circle-two {
    width: 115px;
    height: 115px;

    left: -40px;
    bottom: -48px;
  }
}

/* =========================================================
   STORY SECTION — MOVING BACKGROUND CIRCLES
========================================================= */

.cph-story-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  /* Remove the static radial-gradient circle */
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%) !important;
}

/* Disable the original static circle */
.cph-story-section::before,
.cph-story-section::after {
  content: none !important;
  display: none !important;
}

/* Keep section content above moving circles */
.cph-story-section > .cph-container {
  position: relative;
  z-index: 3;
}

/* Shared circle styling */
.cph-story-moving-circle {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

/* Large bottom-left circle */
.cph-story-circle-one {
  width: 360px;
  height: 360px;

  left: -150px;
  bottom: -160px;

  background: rgba(214, 166, 66, 0.1);
  border: 1px solid rgba(214, 166, 66, 0.08);

  animation: cphStoryCircleOneMove 7s ease-in-out infinite !important;
}

/* Soft top-right circle */
.cph-story-circle-two {
  width: 300px;
  height: 300px;

  top: -110px;
  right: -100px;

  background: rgba(214, 166, 66, 0.08);
  border: 1px solid rgba(214, 166, 66, 0.07);

  animation: cphStoryCircleTwoMove 8s ease-in-out infinite !important;
}

/* Bottom-left circle movement */
@keyframes cphStoryCircleOneMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(30px, -18px, 0) scale(1.06);
  }

  50% {
    transform: translate3d(65px, -45px, 0) scale(1.14);
  }

  75% {
    transform: translate3d(35px, -70px, 0) scale(1.08);
  }
}

/* Top-right circle movement */
@keyframes cphStoryCircleTwoMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(-25px, 20px, 0) scale(1.07);
  }

  50% {
    transform: translate3d(-60px, 48px, 0) scale(1.15);
  }

  75% {
    transform: translate3d(-30px, 70px, 0) scale(1.08);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .cph-story-circle-one {
    width: 280px;
    height: 280px;

    left: -120px;
    bottom: -125px;
  }

  .cph-story-circle-two {
    width: 230px;
    height: 230px;

    top: -90px;
    right: -100px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cph-story-circle-one {
    width: 220px;
    height: 220px;

    left: -100px;
    bottom: -95px;
  }

  .cph-story-circle-two {
    width: 180px;
    height: 180px;

    top: -70px;
    right: -85px;
  }
}

/* =========================================================
   MISSION & VISION — MOVING BACKGROUND CIRCLES
========================================================= */

.cph-mv-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  /* Remove static radial-gradient circles */
  background:
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%) !important;
}

/* Disable old static pseudo-element circle */
.cph-mv-section::before,
.cph-mv-section::after {
  content: none !important;
  display: none !important;
}

/* Keep existing content above the circles */
.cph-mv-section > .cph-container {
  position: relative;
  z-index: 3;
}

/* Shared moving-circle styling */
.cph-mv-moving-circle {
  position: absolute;
  z-index: 1;

  display: block;
  border-radius: 50%;

  pointer-events: none;
  will-change: transform;
}

/* Large right circle */
.cph-mv-circle-one {
  width: 360px;
  height: 360px;

  top: 90px;
  right: -160px;

  background: rgba(214, 166, 66, 0.1);
  border: 1px solid rgba(214, 166, 66, 0.09);

  animation: cphMvCircleOneMove 7s ease-in-out infinite;
}

/* Second left circle */
.cph-mv-circle-two {
  width: 290px;
  height: 290px;

  left: -130px;
  bottom: -100px;

  background: rgba(184, 132, 31, 0.08);
  border: 1px solid rgba(184, 132, 31, 0.08);

  animation: cphMvCircleTwoMove 8s ease-in-out infinite;
}

/* Right circle movement */
@keyframes cphMvCircleOneMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(-24px, 18px, 0) scale(1.06);
  }

  50% {
    transform: translate3d(-60px, 45px, 0) scale(1.14);
  }

  75% {
    transform: translate3d(-30px, 70px, 0) scale(1.08);
  }
}

/* Left circle movement */
@keyframes cphMvCircleTwoMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(28px, -18px, 0) scale(1.07);
  }

  50% {
    transform: translate3d(65px, -45px, 0) scale(1.15);
  }

  75% {
    transform: translate3d(35px, -68px, 0) scale(1.08);
  }
}

/* Keep center heart orb animation working */
.cph-mv-orb {
  animation: cphMvPulse 2.6s ease-in-out infinite !important;
}

/* Tablet */
@media (max-width: 900px) {
  .cph-mv-circle-one {
    width: 280px;
    height: 280px;

    top: 80px;
    right: -125px;
  }

  .cph-mv-circle-two {
    width: 230px;
    height: 230px;

    left: -105px;
    bottom: -80px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cph-mv-circle-one {
    width: 220px;
    height: 220px;

    top: 65px;
    right: -100px;
  }

  .cph-mv-circle-two {
    width: 180px;
    height: 180px;

    left: -85px;
    bottom: -65px;
  }
}

/* =========================================================
   WHY CHOOSE US — MOVING CIRCLES
========================================================= */

.cph-about-why-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Disable old static pseudo-element circles */
.cph-about-why-section::before,
.cph-about-why-section::after {
  content: none !important;
  display: none !important;
}

/* Keep all section content above the circles */
.cph-about-why-section > .cph-container {
  position: relative;
  z-index: 3;
}

/* Shared circle styling */
.cph-about-why-circle {
  position: absolute;
  z-index: 1;
  display: block;

  border-radius: 50%;

  pointer-events: none;
  will-change: transform;
}

/* Large top-right circle */
.cph-about-why-circle-one {
  width: 340px;
  height: 340px;

  top: -130px;
  right: -140px;

  background: rgba(214, 166, 66, 0.1);
  border: 1px solid rgba(214, 166, 66, 0.08);

  animation: cphAboutWhyCircleOneMove 7s ease-in-out infinite;
}

/* Smaller bottom-left circle */
.cph-about-why-circle-two {
  width: 220px;
  height: 220px;

  left: -90px;
  bottom: -100px;

  background: rgba(184, 132, 31, 0.08);
  border: 1px solid rgba(184, 132, 31, 0.08);

  animation: cphAboutWhyCircleTwoMove 8s ease-in-out infinite;
}

/* Top-right circle movement */
@keyframes cphAboutWhyCircleOneMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(-25px, 20px, 0) scale(1.07);
  }

  50% {
    transform: translate3d(-60px, 48px, 0) scale(1.15);
  }

  75% {
    transform: translate3d(-30px, 72px, 0) scale(1.08);
  }
}

/* Bottom-left circle movement */
@keyframes cphAboutWhyCircleTwoMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(28px, -18px, 0) scale(1.07);
  }

  50% {
    transform: translate3d(65px, -45px, 0) scale(1.16);
  }

  75% {
    transform: translate3d(35px, -68px, 0) scale(1.09);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .cph-about-why-circle-one {
    width: 270px;
    height: 270px;

    top: -105px;
    right: -120px;
  }

  .cph-about-why-circle-two {
    width: 180px;
    height: 180px;

    left: -75px;
    bottom: -80px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cph-about-why-circle-one {
    width: 210px;
    height: 210px;

    top: -80px;
    right: -95px;
  }

  .cph-about-why-circle-two {
    width: 140px;
    height: 140px;

    left: -60px;
    bottom: -60px;
  }
}

/* =========================================================
   ABOUT CTA — MOVING CIRCLES
========================================================= */

.cph-about-cta-box {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Remove the old static circles */
.cph-about-cta-box::before,
.cph-about-cta-box::after {
  content: none !important;
  display: none !important;
}

/* Keep CTA content above circles */
.cph-about-cta-content,
.cph-about-cta-actions {
  position: relative;
  z-index: 3;
}

/* Shared circle styling */
.cph-about-cta-circle {
  position: absolute;
  z-index: 1;
  display: block;

  border-radius: 50%;

  pointer-events: none;
  will-change: transform;
}

/* Large top-right circle */
.cph-about-cta-circle-one {
  width: 360px;
  height: 360px;

  top: -150px;
  right: -140px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);

  animation: cphAboutCtaCircleOneMove 7s ease-in-out infinite;
}

/* Smaller bottom circle */
.cph-about-cta-circle-two {
  width: 180px;
  height: 180px;

  left: 45%;
  bottom: -90px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.07);

  animation: cphAboutCtaCircleTwoMove 8s ease-in-out infinite;
}

/* Large circle movement */
@keyframes cphAboutCtaCircleOneMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(-25px, 20px, 0) scale(1.06);
  }

  50% {
    transform: translate3d(-60px, 48px, 0) scale(1.14);
  }

  75% {
    transform: translate3d(-30px, 70px, 0) scale(1.08);
  }
}

/* Smaller circle movement */
@keyframes cphAboutCtaCircleTwoMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(28px, -18px, 0) scale(1.08);
  }

  50% {
    transform: translate3d(62px, -45px, 0) scale(1.16);
  }

  75% {
    transform: translate3d(30px, -68px, 0) scale(1.09);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .cph-about-cta-circle-one {
    width: 280px;
    height: 280px;

    top: -120px;
    right: -120px;
  }

  .cph-about-cta-circle-two {
    width: 145px;
    height: 145px;

    left: -48px;
    bottom: -58px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cph-about-cta-circle-one {
    width: 220px;
    height: 220px;

    top: -95px;
    right: -100px;
  }

  .cph-about-cta-circle-two {
    width: 115px;
    height: 115px;

    left: -40px;
    bottom: -46px;
  }
}

/* =========================================================
   CONTACT HERO — MOVING CIRCLES
========================================================= */

.cph-contact-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Remove original static circles */
.cph-contact-hero::before,
.cph-contact-hero::after {
  content: none !important;
  display: none !important;
}

/* Keep section content above circles */
.cph-contact-hero > .cph-container {
  position: relative;
  z-index: 3;
}

/* Shared circle styling */
.cph-contact-moving-circle {
  position: absolute;
  z-index: 1;

  display: block;
  border-radius: 50%;

  pointer-events: none;
  will-change: transform;
}

/* Large top-right circle */
.cph-contact-circle-one {
  width: 420px;
  height: 420px;

  top: -190px;
  right: -170px;

  background: rgba(214, 166, 66, 0.12);
  border: 1px solid rgba(214, 166, 66, 0.08);

  animation: cphContactCircleOneMove 7s ease-in-out infinite;
}

/* Smaller bottom-left circle */
.cph-contact-circle-two {
  width: 260px;
  height: 260px;

  left: -120px;
  bottom: -110px;

  background: rgba(184, 132, 31, 0.10);
  border: 1px solid rgba(184, 132, 31, 0.08);

  animation: cphContactCircleTwoMove 8s ease-in-out infinite;
}

/* Top-right circle movement */
@keyframes cphContactCircleOneMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(-28px, 22px, 0) scale(1.06);
  }

  50% {
    transform: translate3d(-68px, 55px, 0) scale(1.15);
  }

  75% {
    transform: translate3d(-35px, 82px, 0) scale(1.08);
  }
}

/* Bottom-left circle movement */
@keyframes cphContactCircleTwoMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(30px, -20px, 0) scale(1.07);
  }

  50% {
    transform: translate3d(70px, -50px, 0) scale(1.16);
  }

  75% {
    transform: translate3d(38px, -76px, 0) scale(1.09);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .cph-contact-circle-one {
    width: 320px;
    height: 320px;

    top: -145px;
    right: -140px;
  }

  .cph-contact-circle-two {
    width: 200px;
    height: 200px;

    left: -90px;
    bottom: -85px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cph-contact-circle-one {
    width: 240px;
    height: 240px;

    top: -105px;
    right: -105px;
  }

  .cph-contact-circle-two {
    width: 150px;
    height: 150px;

    left: -65px;
    bottom: -60px;
  }
}

/* =========================================================
   WHY CONTACT US — MOVING CIRCLES
========================================================= */

.cph-why-contact-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Remove previous static pseudo-element circles */
.cph-why-contact-section::before,
.cph-why-contact-section::after {
  content: none !important;
  display: none !important;
}

/* Keep all content above moving circles */
.cph-why-contact-section > .cph-container {
  position: relative;
  z-index: 3;
}

/* Shared circle style */
.cph-why-contact-circle {
  position: absolute;
  z-index: 1;

  display: block;
  border-radius: 50%;

  pointer-events: none;
  will-change: transform;
}

/* Large top-right circle */
.cph-why-contact-circle-one {
  width: 380px;
  height: 380px;

  top: -155px;
  right: -155px;

  background: rgba(214, 166, 66, 0.11);
  border: 1px solid rgba(214, 166, 66, 0.09);

  animation: cphWhyContactCircleOne 7s ease-in-out infinite;
}

/* Smaller bottom-left circle */
.cph-why-contact-circle-two {
  width: 240px;
  height: 240px;

  left: -100px;
  bottom: -105px;

  background: rgba(184, 132, 31, 0.09);
  border: 1px solid rgba(184, 132, 31, 0.08);

  animation: cphWhyContactCircleTwo 8s ease-in-out infinite;
}

/* Top-right circle movement */
@keyframes cphWhyContactCircleOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(-28px, 20px, 0) scale(1.07);
  }

  50% {
    transform: translate3d(-68px, 52px, 0) scale(1.15);
  }

  75% {
    transform: translate3d(-35px, 78px, 0) scale(1.08);
  }
}

/* Bottom-left circle movement */
@keyframes cphWhyContactCircleTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(30px, -20px, 0) scale(1.07);
  }

  50% {
    transform: translate3d(70px, -50px, 0) scale(1.16);
  }

  75% {
    transform: translate3d(38px, -76px, 0) scale(1.09);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .cph-why-contact-circle-one {
    width: 290px;
    height: 290px;

    top: -120px;
    right: -125px;
  }

  .cph-why-contact-circle-two {
    width: 185px;
    height: 185px;

    left: -80px;
    bottom: -78px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cph-why-contact-circle-one {
    width: 220px;
    height: 220px;

    top: -90px;
    right: -100px;
  }

  .cph-why-contact-circle-two {
    width: 140px;
    height: 140px;

    left: -60px;
    bottom: -58px;
  }
}

/* =========================================================
   ORDER HERO — MOVING CIRCLES
========================================================= */

.cph-order-v2-box {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Remove original static circles */
.cph-order-v2-box::before,
.cph-order-v2-box::after {
  content: none !important;
  display: none !important;
}

/* Keep original content above circles */
.cph-order-v2-left,
.cph-order-v2-right {
  position: relative;
  z-index: 3;
}

/* Shared circle style */
.cph-order-moving-circle {
  position: absolute;
  z-index: 1;

  display: block;
  border-radius: 50%;

  pointer-events: none;
  will-change: transform;
}

/* Large top-right circle */
.cph-order-circle-one {
  width: 340px;
  height: 340px;

  top: -160px;
  right: -130px;

  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.08);

  animation: cphOrderCircleOneMove 7s ease-in-out infinite;
}

/* Smaller bottom circle */
.cph-order-circle-two {
  width: 170px;
  height: 170px;

  left: 44%;
  bottom: -90px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.07);

  animation: cphOrderCircleTwoMove 8s ease-in-out infinite;
}

/* Large circle movement */
@keyframes cphOrderCircleOneMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(-25px, 20px, 0) scale(1.07);
  }

  50% {
    transform: translate3d(-60px, 48px, 0) scale(1.15);
  }

  75% {
    transform: translate3d(-32px, 70px, 0) scale(1.08);
  }
}

/* Smaller circle movement */
@keyframes cphOrderCircleTwoMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(28px, -18px, 0) scale(1.08);
  }

  50% {
    transform: translate3d(62px, -45px, 0) scale(1.16);
  }

  75% {
    transform: translate3d(30px, -68px, 0) scale(1.09);
  }
}

/* Tablet */
@media (max-width: 800px) {
  .cph-order-circle-one {
    width: 270px;
    height: 270px;

    top: -120px;
    right: -115px;
  }

  .cph-order-circle-two {
    width: 140px;
    height: 140px;

    left: -45px;
    bottom: -55px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cph-order-circle-one {
    width: 220px;
    height: 220px;

    top: -95px;
    right: -100px;
  }

  .cph-order-circle-two {
    width: 110px;
    height: 110px;

    left: -38px;
    bottom: -45px;
  }
}

/* =========================================================
   ORDER STEPS — MOVING CIRCLES
========================================================= */

.cph-order-steps-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  /* Remove static radial-gradient circle */
  background:
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%) !important;
}

/* Remove old static pseudo-element circle */
.cph-order-steps-section::before,
.cph-order-steps-section::after {
  content: none !important;
  display: none !important;
}

/* Keep content above moving circles */
.cph-order-steps-section > .cph-container {
  position: relative;
  z-index: 3;
}

/* Shared circle styling */
.cph-order-steps-circle {
  position: absolute;
  z-index: 1;

  display: block;
  border-radius: 50%;

  pointer-events: none;
  will-change: transform;
}

/* Large right circle */
.cph-order-steps-circle-one {
  width: 360px;
  height: 360px;

  top: 90px;
  right: -160px;

  background: rgba(214, 166, 66, 0.10);
  border: 1px solid rgba(214, 166, 66, 0.08);

  animation: cphOrderStepsCircleOne 7s ease-in-out infinite;
}

/* Smaller left circle */
.cph-order-steps-circle-two {
  width: 270px;
  height: 270px;

  left: -120px;
  bottom: -105px;

  background: rgba(184, 132, 31, 0.08);
  border: 1px solid rgba(184, 132, 31, 0.08);

  animation: cphOrderStepsCircleTwo 8s ease-in-out infinite;
}

/* Right circle movement */
@keyframes cphOrderStepsCircleOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(-25px, 18px, 0) scale(1.07);
  }

  50% {
    transform: translate3d(-65px, 48px, 0) scale(1.15);
  }

  75% {
    transform: translate3d(-32px, 72px, 0) scale(1.08);
  }
}

/* Left circle movement */
@keyframes cphOrderStepsCircleTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(30px, -20px, 0) scale(1.07);
  }

  50% {
    transform: translate3d(70px, -50px, 0) scale(1.16);
  }

  75% {
    transform: translate3d(38px, -75px, 0) scale(1.09);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .cph-order-steps-circle-one {
    width: 280px;
    height: 280px;

    top: 75px;
    right: -125px;
  }

  .cph-order-steps-circle-two {
    width: 210px;
    height: 210px;

    left: -90px;
    bottom: -80px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cph-order-steps-circle-one {
    width: 215px;
    height: 215px;

    top: 60px;
    right: -100px;
  }

  .cph-order-steps-circle-two {
    width: 150px;
    height: 150px;

    left: -65px;
    bottom: -58px;
  }
}