/* Page CSS */
/* ═══════════════════════════════════════════════════════════════════════════
   PIXELHAFEN DIGITAL — PAGE-HOME CSS
   Homepage-only styles: hero, process, trust, USP, stats, local SEO,
   CTA, testimonials, problem/solution, marquee, services, trades.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════════════════
   PROCESS STEPS (Animated)
   ══════════════════════════════════════════════════════════════════════════ */

.ph-process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
}
.ph-process-image {
  position: sticky;
  top: 120px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(191, 149, 63, 0.1);
  background: #050505;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(191, 149, 63, 0.04);
  height: auto;
  min-height: 100%;
}
.ph-process-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #050505;
  pointer-events: none;
  z-index: 2;
}
.ph-process-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
}
@media (max-width: 768px) {
  .ph-process-layout {
    grid-template-columns: 1fr;
  }
  .ph-process-image {
    position: relative;
    top: auto;
    margin-top: 32px;
    min-height: 0;
    height: auto;
  }
  .ph-process-image img {
    height: auto;
    transform: none;
  }
}
.ph-process-track {
  position: relative;
  margin: 0 auto;
  height: 100%;
}
.ph-process-line {
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(191, 149, 63, 0.15);
}
.ph-process-line-fill {
  position: absolute;
  left: 35px;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, #bf953f, #fcf6ba, #b38728);
  transition: height 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.ph-step {
  display: flex;
  gap: clamp(24px, 3vw, 40px);
  align-items: flex-start;
  padding: 28px 0;
  position: relative;
  opacity: 1;
  transform: none;
  transition: none;
}
.ph-step.ph-visible {
  opacity: 1;
  transform: none;
}
.ph-step-marker {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(252, 246, 186, 0.44);
  background: radial-gradient(
    circle at 50% 50%,
    rgba(18, 18, 20, 0.92) 0%,
    rgba(6, 6, 8, 0.98) 100%
  );
  display: grid;
  place-items: center;
  font-family: var(--ph-font-number);
  font-size: var(--ph-text-2xl);
  font-weight: 700;
  color: #e3c05b;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 32px rgba(191, 149, 63, 0.15),
    0 0 72px rgba(191, 149, 63, 0.08),
    inset 0 1px 0 rgba(252, 246, 186, 0.08);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.ph-step-marker-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  transform: none;
  font-variant-numeric: lining-nums tabular-nums;
}
/* Outer pulsing ring */
.ph-step-marker::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(191, 149, 63, 0);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.ph-step-marker::after {
  content: "";
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  border: 1px solid rgba(191, 149, 63, 0);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}
.ph-step.ph-visible .ph-step-marker {
  background: var(--ph-gold-gradient);
  color: #0d0d0d;
  border-color: rgba(252, 246, 186, 0.86);
  box-shadow:
    0 0 38px rgba(191, 149, 63, 0.48),
    0 0 96px rgba(191, 149, 63, 0.22),
    inset 0 1px 0 rgba(252, 246, 186, 0.16);
  animation: ph-marker-pulse 2.05s ease-in-out infinite;
  transition-delay: 0.2s;
}
.ph-step.ph-visible .ph-step-marker-number {
  color: #0d0d0d;
}
.ph-step.ph-visible .ph-step-marker::before {
  border-color: rgba(252, 246, 186, 0.4);
  animation: ph-ring-expand 2.05s ease-out infinite;
}
.ph-step.ph-visible .ph-step-marker::after {
  border-color: rgba(191, 149, 63, 0.28);
  animation: ph-ring-expand 2.05s ease-out infinite 0.32s;
}
.ph-step-content h4 {
  font-size: var(--ph-text-2xl);
  margin-bottom: 8px;
  color: #f2f2f2;
}
.ph-step-content p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
  max-width: 500px;
}
@media (max-width: 600px) {
  .ph-process-track {
    padding-left: 0;
  }
  .ph-process-line {
    left: 24px;
  }
  .ph-process-line-fill {
    left: 24px;
  }
  .ph-step {
    gap: 20px;
    padding: 28px 0;
  }
  .ph-step-marker {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1.125rem;
  }
  .ph-step-marker::before {
    inset: -10px;
  }
  .ph-step-marker::after {
    inset: -20px;
  }
  .ph-step-content h4 {
    font-size: clamp(1.1rem, 4.5vw, 1.35rem);
    margin-bottom: 6px;
  }
  .ph-step-content p {
    font-size: 0.82rem;
    line-height: 1.65;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   TRUST (ARKADIUS)
   ══════════════════════════════════════════════════════════════════════════ */

.ph-trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.ph-trust-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(191, 149, 63, 0.06);
  animation: ph-trust-float 6s ease-in-out infinite;
}
.ph-trust-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(12%) contrast(1.05);
  transition:
    filter 0.6s ease,
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.ph-trust-image:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.03);
}
.ph-trust-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(191, 149, 63, 0.2);
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}
.ph-trust-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
  z-index: 1;
}
.ph-trust-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(
    135deg,
    #bf953f 0%,
    #fcf6ba 30%,
    #b38728 55%,
    #fbf5b7 80%,
    #aa771c 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 0 15px rgba(191, 149, 63, 0.3));
}
.ph-trust-role {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .ph-trust-layout {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .ph-trust-image {
    max-width: 360px;
    margin: 0 auto 40px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   USP GRID
   ══════════════════════════════════════════════════════════════════════════ */

/* Sticky left + scrolling right layout */
.ph-usp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}
.ph-usp-sticky {
  position: sticky;
  top: 120px;
}
.ph-usp-sticky .ph-eyebrow {
  margin-bottom: 20px;
}
.ph-usp-sticky h2 {
  margin-bottom: 20px;
}
.ph-usp-sticky .ph-lead {
  margin-bottom: 28px;
}

.ph-usp-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ph-usp-item {
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  background: rgba(255, 255, 255, 0.015);
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    0 0 12px rgba(191, 149, 63, 0.03);
}
.ph-usp-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, #bf953f, #fcf6ba, #aa771c);
  border-radius: 0 0 3px 0;
  transition: height 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.ph-usp-item:hover::before {
  height: 100%;
}
.ph-usp-item:hover {
  border-color: rgba(191, 149, 63, 0.25);
  background: rgba(191, 149, 63, 0.03);
  transform: translateX(8px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(191, 149, 63, 0.04);
}
.ph-usp-number {
  font-family: var(--ph-font-number);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #bf953f 0%,
    #fcf6ba 25%,
    #b38728 50%,
    #fbf5b7 75%,
    #aa771c 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  font-variant-numeric: lining-nums tabular-nums;
}
.ph-usp-item h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: #f2f2f2;
}
.ph-usp-item p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .ph-usp-layout {
    grid-template-columns: 1fr;
  }
  .ph-usp-sticky {
    position: relative;
    top: auto;
    margin-bottom: 40px;
  }
  .ph-home-usp-desktop-only {
    display: none;
  }
  .ph-home-usp-cta-mobile {
    display: inline-flex;
    margin-top: 28px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════════════════════════════════ */

.ph-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 64px 0;
}
.ph-stats-row > div {
  border: 1px solid rgba(191, 149, 63, 0.25);
  border-radius: 16px;
  padding: 40px 20px;
  background: rgba(191, 149, 63, 0.02);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  animation: ph-stat-border-glow 4s ease-in-out infinite;
}
.ph-stats-row > div:nth-child(2) {
  animation-delay: 1s;
}
.ph-stats-row > div:nth-child(3) {
  animation-delay: 2s;
}
.ph-stats-row > div:nth-child(4) {
  animation-delay: 3s;
}
.ph-stats-row > div:hover {
  border-color: rgba(191, 149, 63, 0.55);
  background: rgba(191, 149, 63, 0.06);
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(191, 149, 63, 0.12),
    0 0 80px rgba(191, 149, 63, 0.05);
  animation: none;
}
.ph-stat-number {
  font-family: var(--ph-font-number);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #bf953f 0%,
    #fcf6ba 25%,
    #b38728 50%,
    #fbf5b7 75%,
    #aa771c 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  filter: drop-shadow(0 0 10px rgba(191, 149, 63, 0.2));
  font-variant-numeric: lining-nums tabular-nums;
}
.ph-stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .ph-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .ph-stats-row {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   LOCAL SEO TAGS
   ══════════════════════════════════════════════════════════════════════════ */

.ph-local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
}
.ph-local-tag {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ph-local-tag:hover {
  border-color: rgba(191, 149, 63, 0.45);
  color: #bf953f;
  background: rgba(191, 149, 63, 0.05);
  box-shadow: 0 0 16px rgba(191, 149, 63, 0.08);
  transform: translateY(-2px);
}
.ph-local-tag-primary {
  border-color: rgba(191, 149, 63, 0.22);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(191, 149, 63, 0.04);
  box-shadow: 0 0 10px rgba(191, 149, 63, 0.04);
}
.ph-local-tag-primary:hover {
  background: rgba(191, 149, 63, 0.08);
  box-shadow: 0 0 20px rgba(191, 149, 63, 0.12);
}

/* ══════════════════════════════════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════════════════════════════════ */

.ph-cta-glow {
  position: relative;
  background: #050505;
}
.ph-cta-glow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  background: radial-gradient(
    circle,
    rgba(191, 149, 63, 0.1) 0%,
    rgba(191, 149, 63, 0.03) 35%,
    transparent 65%
  );
  pointer-events: none;
  border-radius: 50%;
}

/* ══════════════════════════════════════════════════════════════════════════
   TESTIMONIAL CAROUSEL
   ══════════════════════════════════════════════════════════════════════════ */

.ph-testimonials-section {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(191, 149, 63, 0.08) 0%,
      transparent 36%
    ),
    linear-gradient(180deg, #080808 0%, #0d0d10 100%);
  position: relative;
  overflow: hidden;
  padding-top: var(--ph-section-space);
  padding-bottom: var(--ph-section-space);
}
.ph-testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(252, 246, 186, 0.025) 50%,
    transparent 100%
  );
  pointer-events: none;
}
.ph-testimonial-carousel {
  position: relative;
}
.ph-testimonial-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  padding: 6px 0;
  touch-action: pan-y;
  cursor: grab;
}
.ph-testimonial-track {
  display: flex;
  align-items: stretch;
  gap: clamp(18px, 2.2vw, 28px);
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.ph-testimonial-track.ph-dragging {
  cursor: grabbing;
  user-select: none;
}
.ph-testimonial-card {
  flex: 0 0 calc((100% - 2 * clamp(18px, 2.2vw, 28px)) / 3);
  min-width: 0;
  background: var(--ph-premium-surface);
  border: 1px solid rgba(191, 149, 63, 0.18);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 36px) clamp(24px, 2.5vw, 32px);
  position: relative;
  transition:
    background 0.38s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.38s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.38s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.ph-testimonial-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ph-gold-gradient-h);
  opacity: 0;
  transition: opacity 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 24px 24px 0 0;
}
.ph-testimonial-card:hover {
  background: linear-gradient(
    180deg,
    rgba(24, 24, 31, 0.96) 0%,
    rgba(14, 14, 18, 1) 100%
  );
  border-color: rgba(191, 149, 63, 0.45);
  box-shadow:
    0 22px 68px rgba(0, 0, 0, 0.7),
    0 0 28px rgba(191, 149, 63, 0.14);
  transform: translateY(-5px);
}
.ph-testimonial-card:hover::after {
  opacity: 1;
}
.ph-testimonial-card--featured {
  border-color: rgba(191, 149, 63, 0.32);
  background: linear-gradient(
    180deg,
    rgba(22, 22, 30, 0.97) 0%,
    rgba(14, 14, 18, 1) 100%
  );
}
.ph-testimonial-card--featured::after {
  opacity: 0.6;
}

.ph-testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  justify-content: flex-start;
  align-self: flex-start;
  width: 100%;
  max-width: none;
}
.ph-testimonial-star {
  font-size: 15px;
  line-height: 1;
  background: var(--ph-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ph-testimonial-quote-icon {
  display: none;
}
.ph-testimonial-quote {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.02rem, 1.25vw, 1.28rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.72;
  color: rgba(244, 239, 230, 0.82);
  letter-spacing: 0.005em;
  margin: 0 0 20px 0;
  margin-inline: 0;
  border: none;
  padding: 0;
  padding-inline: 0;
  min-height: clamp(10rem, 12.5vw, 11.4rem);
  flex: 1;
  text-align: left;
  align-self: stretch;
  width: 100%;
  max-width: none;
  text-indent: 0;
}
.ph-testimonial-quote p {
  margin: 0;
  margin-inline: 0;
  padding: 0;
  width: 100%;
  max-width: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  text-align: inherit;
}
.ph-testimonial-author-section {
  margin-top: auto;
  padding-top: 20px;
  position: relative;
  width: 100%;
  align-self: stretch;
}
.ph-testimonial-author-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 0 20px 0;
  background: linear-gradient(
    90deg,
    rgba(191, 149, 63, 0.32),
    rgba(191, 149, 63, 0.08) 55%,
    transparent 100%
  );
  border: none;
}
.ph-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.ph-testimonial-author-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  width: 100%;
  min-height: 50px;
}
.ph-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  align-self: center;
  border: 1px solid rgba(191, 149, 63, 0.35);
  background: linear-gradient(
    180deg,
    rgba(28, 28, 38, 0.96),
    rgba(16, 16, 22, 1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(252, 246, 186, 0.05);
}
.ph-testimonial-initials {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--ph-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ph-testimonial-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.92rem, 1vw, 1.06rem);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 3px;
  background: var(--ph-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
}
.ph-testimonial-role {
  font-family: "Inter", sans-serif;
  font-size: 0.52rem;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

/* Carousel controls */
.ph-testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: clamp(36px, 4vw, 52px);
}
.ph-testimonial-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(191, 149, 63, 0.22);
  background: rgba(18, 18, 24, 0.78);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    background 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  outline: none;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(252, 246, 186, 0.04);
}
.ph-testimonial-btn svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke: #bf953f;
  stroke-width: 1.8;
  fill: none;
  filter: drop-shadow(0 0 4px rgba(191, 149, 63, 0.3));
  transition:
    stroke 0.3s ease,
    filter 0.3s ease;
}
.ph-testimonial-btn:hover svg {
  stroke: #fcf6ba;
  filter: drop-shadow(0 0 8px rgba(191, 149, 63, 0.5));
}
.ph-testimonial-btn:hover {
  border-color: rgba(191, 149, 63, 0.45);
  background: rgba(24, 24, 30, 0.88);
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px rgba(191, 149, 63, 0.18);
}
.ph-testimonial-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ph-testimonial-dots {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0 6px;
}
.ph-testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(191, 149, 63, 0.08);
  border: 1px solid rgba(191, 149, 63, 0.34);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  outline: none;
  -webkit-appearance: none;
  padding: 0;
  box-shadow: inset 0 1px 0 rgba(252, 246, 186, 0.04);
}
.ph-testimonial-dot:hover {
  box-shadow: 0 0 0 2px rgba(191, 149, 63, 0.18);
  background: rgba(191, 149, 63, 0.18);
}
.ph-testimonial-dot.active {
  width: 36px;
  border-radius: 999px;
  background: var(--ph-gold-gradient-h);
  border-color: transparent;
  box-shadow: 0 0 24px rgba(191, 149, 63, 0.28);
}

@media (max-width: 900px) {
  .ph-testimonial-card {
    flex: 0 0 calc((100% - clamp(18px, 2.2vw, 28px)) / 2);
  }
}
@media (max-width: 560px) {
  .ph-testimonial-card {
    flex: 0 0 100%;
  }
  .ph-testimonial-track-wrap {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .ph-testimonial-quote {
    min-height: auto;
  }
  .ph-testimonial-controls {
    gap: 14px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   HOMEPAGE HELPERS — Problem / Solution Grid
   ══════════════════════════════════════════════════════════════════════════ */

.ph-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 48px;
}

@media (max-width: 768px) {
  .ph-problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.ph-problem-item,
.ph-solution-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  background: transparent;
}

.ph-problem-item:hover,
.ph-solution-item:hover {
  border-color: rgba(191, 149, 63, 0.15);
  background: rgba(255, 255, 255, 0.015);
}

.ph-problem-icon,
.ph-solution-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.ph-problem-icon {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.ph-problem-icon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 2;
  fill: none;
}

.ph-solution-icon {
  position: relative;
  border: 1px solid rgba(191, 149, 63, 0.25);
  background: rgba(191, 149, 63, 0.06);
  animation: ph-pulse-glow 4s ease-in-out infinite;
  box-shadow:
    0 0 0 6px rgba(191, 149, 63, 0.06),
    0 0 18px rgba(191, 149, 63, 0.12),
    0 0 40px rgba(191, 149, 63, 0.04);
}

.ph-solution-icon::before,
.ph-solution-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(191, 149, 63, 0.18);
  opacity: 0;
  animation: ph-solution-ripple 3s ease-out infinite;
}

.ph-solution-icon::after {
  inset: -14px;
  animation-delay: 0.7s;
}

.ph-solution-icon svg {
  width: 20px;
  height: 20px;
  stroke: #bf953f;
  stroke-width: 2;
  fill: none;
}

.ph-solution-item {
  box-shadow: 0 0 0 rgba(191, 149, 63, 0);
}

.ph-solution-item:hover {
  border-color: rgba(191, 149, 63, 0.22);
  background: rgba(255, 255, 255, 0.02);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.3),
    0 0 46px rgba(191, 149, 63, 0.14);
}

.ph-solution-item:hover .ph-solution-icon {
  box-shadow:
    0 0 0 8px rgba(191, 149, 63, 0.08),
    0 0 24px rgba(191, 149, 63, 0.16);
}

.ph-problem-text h5,
.ph-solution-text h5 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #f2f2f2;
}

.ph-problem-text p,
.ph-solution-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════════════
   LOCATION PIN ICON
   ══════════════════════════════════════════════════════════════════════════ */

.ph-location-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.ph-location-icon svg {
  width: 44px;
  height: 44px;
  stroke: #bf953f;
  stroke-width: 1.2;
  fill: none;
  animation: ph-float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(191, 149, 63, 0.35))
    drop-shadow(0 0 40px rgba(191, 149, 63, 0.12));
}

/* ══════════════════════════════════════════════════════════════════════════
   TYPING ANIMATION
   ══════════════════════════════════════════════════════════════════════════ */

.ph-typing-wrapper {
  display: inline;
  position: relative;
}

.ph-typing-text {
  display: inline;
  border-right: 3px solid #bf953f;
  padding-right: 4px;
  animation: ph-typing-cursor 0.8s step-end infinite;
  background: linear-gradient(
    135deg,
    #bf953f 0%,
    #fcf6ba 25%,
    #b38728 50%,
    #fbf5b7 75%,
    #aa771c 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ph-typing-text.ph-typing-done {
  border-right-color: transparent;
  animation: none;
}

.ph-typewrite-target {
  position: relative;
  transition:
    color 0.35s ease,
    text-shadow 0.35s ease,
    opacity 0.35s ease;
}

.ph-typewrite-target.ph-typewrite-hover,
.ph-typewrite-target.ph-typewrite-active {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 0 20px rgba(191, 149, 63, 0.12);
}

.ph-typewrite-cursor {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 4px;
  vertical-align: -0.14em;
  border-radius: 999px;
  background: linear-gradient(180deg, #fcf6ba 0%, #bf953f 100%);
  box-shadow:
    0 0 12px rgba(191, 149, 63, 0.45),
    0 0 28px rgba(191, 149, 63, 0.16);
  animation: ph-typewrite-blink 0.82s step-end infinite;
}

.ph-typewrite-cursor.ph-typewrite-done {
  opacity: 0;
  animation: none;
  transition: opacity 0.55s ease;
}

/* ══════════════════════════════════════════════════════════════════════════
   MARQUEE SCROLLING BANNER
   ══════════════════════════════════════════════════════════════════════════ */

.ph-marquee {
  overflow: hidden;
  padding: clamp(18px, 2.5vw, 28px) 0;
  border-top: 1px solid rgba(191, 149, 63, 0.2);
  border-bottom: 1px solid rgba(191, 149, 63, 0.2);
  background: linear-gradient(90deg, #090909 0%, #100d08 50%, #090909 100%);
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(252, 246, 186, 0.04),
    inset 0 -1px 0 rgba(252, 246, 186, 0.02);
}
.ph-marquee::before,
.ph-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ph-marquee::before {
  left: 0;
  background: linear-gradient(to right, #0d0d0d, transparent);
}
.ph-marquee::after {
  right: 0;
  background: linear-gradient(to left, #0d0d0d, transparent);
}
.ph-marquee-track {
  display: inline-flex;
  gap: clamp(30px, 4vw, 50px);
  align-items: center;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.ph-marquee-item {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  font-weight: 500;
  font-style: italic;
  background: var(--ph-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.03em;
  text-transform: none;
  opacity: 0.88;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  cursor: default;
}
.ph-marquee-item:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.ph-marquee-dot {
  background: var(--ph-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.6rem;
  opacity: 0.78;
}

/* ══════════════════════════════════════════════════════════════════════════
   SERVICE SECTION CENTER-ALIGNED OVERRIDE
   ══════════════════════════════════════════════════════════════════════════ */

.ph-services-section {
  position: relative;
  overflow: hidden;
}

.ph-services-section .ph-container {
  position: relative;
  z-index: 1;
}

.ph-services-ambient-wordpress {
  position: absolute;
  top: clamp(30px, 5vh, 70px);
  right: clamp(30px, 5vw, 90px);
  width: clamp(99px, 9vw, 135px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 5;
  animation: ph-wp-scale-pulse 3.5s ease-in-out infinite;
}

.ph-services-ambient-wordpress img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
  animation: ph-services-wordpress-spin 14s linear infinite;
}

@keyframes ph-wp-scale-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}

@keyframes ph-services-wordpress-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.ph-services-section .ph-services-grid {
  gap: 28px;
}

.ph-services-section .ph-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
}

.ph-services-section .ph-card-icon,
.ph-services-section .ph-icon-glow-ring {
  margin-left: auto;
  margin-right: auto;
}

.ph-services-section .ph-card h4 {
  text-align: center;
}

.ph-services-section .ph-card p {
  text-align: center;
}

.ph-services-section .ph-card-link {
  justify-content: center;
}

.ph-services-section .ph-card-body {
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
}

.ph-services-section .ph-card-icon-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin-bottom: 0;
  border-radius: 0;
  transform-origin: center center;
}

.ph-services-section .ph-card h4 {
  text-align: center;
  white-space: normal;
}

.ph-services-section .ph-card:hover {
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(191, 149, 63, 0.1),
    0 0 120px rgba(191, 149, 63, 0.04),
    inset 0 1px 0 rgba(191, 149, 63, 0.2);
}

/* Staggered entrance animation for service cards */
.ph-services-section .ph-card[data-ph-animate].ph-visible {
  animation: ph-card-entrance 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
}
.ph-services-section .ph-card:nth-child(1) {
  animation-delay: 0s;
}
.ph-services-section .ph-card:nth-child(2) {
  animation-delay: 0.1s;
}
.ph-services-section .ph-card:nth-child(3) {
  animation-delay: 0.2s;
}
.ph-services-section .ph-card:nth-child(4) {
  animation-delay: 0.3s;
}
.ph-services-section .ph-card:nth-child(5) {
  animation-delay: 0.4s;
}
.ph-services-section .ph-card:nth-child(6) {
  animation-delay: 0.5s;
}

/* ══════════════════════════════════════════════════════════════════════════
   MOBILE SERVICES SLIDER (≤768px only)
   ══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .ph-services-section .ph-services-grid {
    display: block;
    overflow: hidden;
    position: relative;
  }
  .ph-svc-slider-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .ph-svc-slider-track .ph-card {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
    transform: none !important;
    animation: none !important;
  }
  .ph-svc-slider-track .ph-card:hover {
    transform: none !important;
  }
}

/* Slider controls — injected by JS on mobile */
.ph-svc-slider-controls {
  display: none;
}
@media (max-width: 768px) {
  .ph-svc-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
  }
  .ph-svc-slider-btn {
    all: unset;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(191, 149, 63, 0.22);
    background: rgba(18, 18, 24, 0.78);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .ph-svc-slider-btn:hover,
  .ph-svc-slider-btn:active {
    border-color: rgba(191, 149, 63, 0.45);
    background: rgba(24, 24, 30, 0.88);
    box-shadow: 0 0 0 2px rgba(191, 149, 63, 0.18);
  }
  .ph-svc-slider-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #bf953f;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .ph-svc-slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .ph-svc-slider-dot {
    all: unset;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(191, 149, 63, 0.08);
    border: 1px solid rgba(191, 149, 63, 0.3);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-tap-highlight-color: transparent;
  }
  .ph-svc-slider-dot:hover {
    background: rgba(191, 149, 63, 0.18);
  }
  .ph-svc-slider-dot.active {
    width: 28px;
    border-radius: 999px;
    background: var(--ph-gold-gradient-h);
    border-color: transparent;
    box-shadow: 0 0 16px rgba(191, 149, 63, 0.25);
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════ */

.ph-hero {
  position: relative;
  height: 910px;
  max-height: 100vh;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.ph-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.1s ease-out;
}

.ph-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.7s ease-in-out;
}

.ph-hero-bg img.changing {
  opacity: 0;
}

/* Multi-layer overlay for depth */
.ph-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      #0d0d0d 0%,
      rgba(13, 13, 13, 0.85) 30%,
      transparent 70%
    ),
    linear-gradient(
      to right,
      rgba(13, 13, 13, 0.9) 0%,
      rgba(13, 13, 13, 0.4) 50%,
      transparent 80%
    );
}

/* Ambient gold glow */
.ph-hero-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 15% 50%,
    rgba(191, 149, 63, 0.04) 0%,
    transparent 50%
  );
}

/* Animated particles / floating dots */
.ph-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.ph-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(191, 149, 63, 0.4);
  border-radius: 50%;
  animation: ph-particle-rise linear infinite;
}

@keyframes ph-particle-rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(0.5);
    opacity: 0;
  }
}

.ph-particle:nth-child(1) {
  left: 10%;
  animation-duration: 12s;
  animation-delay: 0s;
}
.ph-particle:nth-child(2) {
  left: 25%;
  animation-duration: 15s;
  animation-delay: 2s;
  width: 3px;
  height: 3px;
}
.ph-particle:nth-child(3) {
  left: 40%;
  animation-duration: 10s;
  animation-delay: 4s;
}
.ph-particle:nth-child(4) {
  left: 55%;
  animation-duration: 18s;
  animation-delay: 1s;
  width: 1.5px;
  height: 1.5px;
}
.ph-particle:nth-child(5) {
  left: 70%;
  animation-duration: 14s;
  animation-delay: 3s;
}
.ph-particle:nth-child(6) {
  left: 85%;
  animation-duration: 11s;
  animation-delay: 5s;
  width: 2.5px;
  height: 2.5px;
}
.ph-particle:nth-child(7) {
  left: 15%;
  animation-duration: 16s;
  animation-delay: 7s;
}
.ph-particle:nth-child(8) {
  left: 92%;
  animation-duration: 13s;
  animation-delay: 0.5s;
}

.ph-hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  height: 100%;
}

.ph-hero-text {
  padding: clamp(110px, 15vh, 170px) 0 clamp(80px, 12vh, 140px);
}

.ph-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #bf953f;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: ph-hero-fadeup 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.3s forwards;
}

.ph-hero-eyebrow::before {
  display: none;
}

@keyframes ph-hero-fadeup {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ph-hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 7.6vw, 78px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #f2f2f2;
  margin-bottom: 8px;
  text-transform: none;
  opacity: 0;
  transform: translateY(30px);
  animation: ph-hero-fadeup 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
}

.ph-hero-subtitle {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: ph-hero-fadeup 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.7s forwards;
}

.ph-hero-rotating-desc {
  font-family: "Inter", sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  max-width: 520px;
  margin-bottom: 0;
  min-height: 58px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.ph-hero-rotating-desc.changing {
  opacity: 0;
  transform: translateY(-8px);
}

.ph-hero-service-shell {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: min(100%, 560px);
  margin-bottom: 36px;
  padding: 20px 24px 22px;
  border-radius: 22px;
  border: 1px solid rgba(191, 149, 63, 0.24);
  background: linear-gradient(
    135deg,
    rgba(10, 10, 12, 0.82),
    rgba(18, 18, 22, 0.46)
  );
  box-shadow:
    0 22px 72px rgba(0, 0, 0, 0.42),
    0 0 40px rgba(191, 149, 63, 0.14),
    0 0 90px rgba(191, 149, 63, 0.06),
    inset 0 1px 0 rgba(252, 246, 186, 0.07);
  backdrop-filter: blur(18px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  animation: ph-hero-fadeup 0.85s cubic-bezier(0.19, 1, 0.22, 1) 0.82s forwards;
}

.ph-hero-service-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(252, 246, 186, 0.08) 48%,
    transparent 100%
  );
  transform: translateX(-140%);
  animation: ph-hero-scan 7s linear infinite;
  pointer-events: none;
}

.ph-hero-service-shell::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 12px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(191, 149, 63, 0),
    rgba(191, 149, 63, 0.52),
    rgba(191, 149, 63, 0)
  );
  opacity: 0.7;
  pointer-events: none;
}

.ph-hero-service-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(252, 246, 186, 0.86);
  white-space: nowrap;
  padding: 8px 14px 7px;
  border-radius: 999px;
  border: 1px solid rgba(191, 149, 63, 0.18);
  background: rgba(191, 149, 63, 0.05);
  box-shadow: inset 0 1px 0 rgba(252, 246, 186, 0.04);
  font-variant-numeric: tabular-nums;
}

.ph-hero-service-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.16;
  padding-bottom: 0.12em;
  margin-bottom: 0;
  background: var(--ph-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(191, 149, 63, 0.22);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.ph-hero-service-name.changing {
  opacity: 0;
  transform: translateY(-8px);
}

.ph-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: ph-hero-fadeup 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.9s forwards;
}

/* Hero image column — hidden in single-column layout */
.ph-hero-visual {
  display: none;
}

.ph-hero-nav {
  position: absolute;
  right: clamp(18px, 4vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 24;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ph-hero-nav-btn {
  all: unset;
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: inherit;
  line-height: normal;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.ph-hero-nav-btn:hover,
.ph-hero-nav-btn:focus,
.ph-hero-nav-btn:active,
.ph-hero-nav-btn:focus-visible {
  background: transparent;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
  opacity: 1;
}

.ph-hero-nav-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.ph-hero-nav-btn:hover .ph-hero-nav-circle,
.ph-hero-nav-btn:focus-visible .ph-hero-nav-circle {
  border-color: #bf953f;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(191, 149, 63, 0.25);
  background: rgba(191, 149, 63, 0.06);
}

.ph-hero-nav-circle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.ph-hero-nav-btn:hover .ph-hero-nav-circle svg {
  stroke: #bf953f;
}

.ph-hero-nav-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Inter", sans-serif;
  transition: color 0.3s ease;
}

.ph-hero-nav-btn:hover .ph-hero-nav-label,
.ph-hero-nav-btn:focus-visible .ph-hero-nav-label {
  color: #bf953f;
}

.ph-hero-nav-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(191, 149, 63, 0.15),
    transparent
  );
}

/* Social links at hero bottom */
.ph-hero-social {
  position: absolute;
  bottom: clamp(20px, 4vh, 48px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 14px;
}

.ph-hero-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(191, 149, 63, 0.12);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.ph-hero-social-link:hover {
  background: rgba(191, 149, 63, 0.1);
  border-color: rgba(191, 149, 63, 0.5);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(191, 149, 63, 0.25);
}

.ph-hero-social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.ph-hero-social-link:hover svg {
  stroke: #bf953f;
}

/* Scroll indicator */
.ph-hero-scroll {
  position: absolute;
  bottom: clamp(20px, 4vh, 48px);
  right: clamp(18px, 4vw, 40px);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: ph-breathe 3s ease-in-out infinite;
}

.ph-hero-scroll-text {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
}

.ph-hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(191, 149, 63, 0.4), transparent);
  animation: ph-scroll-pulse 2s ease-in-out infinite;
}

@keyframes ph-scroll-pulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1.3);
    opacity: 0.8;
  }
}

@keyframes ph-hero-scan {
  0% {
    transform: translateX(-140%);
  }
  100% {
    transform: translateX(140%);
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   BRANCHENEXPERTISE (Sliding Trade Cards)
   Two-track infinite horizontal scroll with trade-specific cards.
   ══════════════════════════════════════════════════════════════════════════ */

.ph-trades-section {
  position: relative;
  background: var(--ph-bg-deep);
  overflow: hidden;
}

.ph-trades-section .ph-container {
  position: relative;
  z-index: 1;
}

.ph-trades-floating-laptop {
  position: absolute;
  right: 150px;
  top: clamp(20px, 2.4vw, 44px);
  width: clamp(170px, 19vw, 300px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
  filter:
    drop-shadow(0 26px 34px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 28px rgba(191, 149, 63, 0.16));
  animation: ph-trades-laptop-float 3s ease-in-out infinite;
}

.ph-trades-floating-laptop img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@keyframes ph-trades-laptop-float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -10px);
  }
}

/* Fade-mask on left/right edges */
.ph-trades-mask {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

/* Scrolling track — flex row, duplicated for seamless loop */
.ph-trades-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 0;
  animation: ph-marquee-scroll 60s linear infinite;
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}
.ph-trades-track:hover {
  animation-play-state: paused;
}
.ph-trades-track.ph-trades-rev {
  animation-direction: reverse;
  animation-duration: 75s;
  margin-top: 20px;
}
/* JS-driven mode: disable CSS animation */
.ph-trades-track.ph-trades-js {
  animation: none;
}
.ph-trades-track.ph-dragging {
  cursor: grabbing;
}

/* Individual trade card */
.ph-trades-card {
  flex: 0 0 380px;
  background: var(--ph-bg-card);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-xl);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.4s var(--ph-ease),
    transform 0.45s var(--ph-ease),
    box-shadow 0.4s ease;
}
.ph-trades-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ph-gold-gradient-h);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ph-trades-card:hover {
  border-color: var(--ph-border-gold);
  transform: translateY(-6px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(191, 149, 63, 0.06);
  background: var(--ph-bg-card-hover);
}
.ph-trades-card:hover::before {
  opacity: 1;
}

/* Trade eyebrow */
.ph-trades-eyebrow {
  font-family: var(--ph-font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ph-gold);
  opacity: 0.75;
  margin-bottom: 6px;
}

/* Card title — kept compact to avoid layout overflow */
.ph-trades-card-title {
  font-family: var(--ph-font-heading);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 700;
  color: var(--ph-text);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Two-column problem / solution row */
.ph-trades-pipe {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-md);
  overflow: hidden;
}
.ph-trades-col {
  flex: 1;
  padding: 14px 14px;
  min-width: 0;
}
.ph-trades-col + .ph-trades-col {
  border-left: 1px solid var(--ph-border);
}
.ph-trades-col-label {
  font-family: var(--ph-font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ph-text-faint);
  margin-bottom: 7px;
}
.ph-trades-col-text {
  font-family: var(--ph-font-body);
  font-size: var(--ph-text-sm);
  color: var(--ph-text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Solution column accent */
.ph-trades-col-sol .ph-trades-col-label {
  color: var(--ph-gold);
  opacity: 0.8;
}
.ph-trades-col-sol .ph-trades-col-text {
  color: var(--ph-text-secondary);
}

/* Result line */
.ph-trades-result {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ph-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--ph-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ph-trades-result::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ph-gold);
  opacity: 0.5;
  flex-shrink: 0;
}

/* Separator between tracks area and rest */
.ph-trades-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(191, 149, 63, 0.1),
    transparent
  );
  margin-top: 48px;
}

@media (max-width: 900px) {
  .ph-services-ambient-wordpress,
  .ph-trades-floating-laptop {
    display: none;
  }
  .ph-trades-card {
    flex: 0 0 340px;
  }
}
@media (max-width: 600px) {
  .ph-trades-card {
    flex: 0 0 290px;
    padding: 20px;
  }
  .ph-trades-track {
    gap: 14px;
  }
  .ph-trades-track.ph-trades-rev {
    margin-top: 14px;
  }
  .ph-trades-card-title {
    font-size: 1rem;
  }
  .ph-trades-eyebrow {
    font-size: 8px;
  }
  .ph-trades-col {
    padding: 10px;
  }
  .ph-trades-col-label {
    font-size: 8px;
  }
  .ph-trades-col-text {
    font-size: 0.8rem;
  }
  .ph-trades-result {
    font-size: 11px;
    margin-top: 12px;
  }
  .ph-trades-mask {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 3%,
      black 97%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 3%,
      black 97%,
      transparent 100%
    );
  }
}

/* Responsive hero */
@media (max-width: 768px) {
  .ph-hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .ph-hero-title {
    font-size: clamp(36px, 9vw, 52px);
  }
  .ph-hero-service-shell {
    display: none;
  }
  .ph-hero-nav {
    display: none;
  }
  .ph-hero-btns {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .ph-hero-text {
    text-align: center;
    padding: 100px 0 60px;
  }
  .ph-hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .ph-hero-inner {
    padding: 0 20px;
  }
  .ph-hero-title {
    font-size: clamp(30px, 9vw, 40px);
  }
  .ph-btn-supreme {
    flex: 1;
    min-width: 0;
    font-size: 0.88rem;
    padding: 0.65rem 1.1rem;
    letter-spacing: 0.03em;
  }
  .ph-hero-social-link {
    width: 36px;
    height: 36px;
  }
}

.ph-home-item-gap {
  margin-top: 16px;
}

.ph-home-section-divider {
  margin: 48px auto;
}

.ph-home-usp-copy {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.925rem;
  line-height: 1.8;
  margin-top: 16px;
}

.ph-home-usp-divider {
  margin: 28px 0;
}

.ph-home-usp-cta {
  margin-top: 8px;
}

@media (min-width: 769px) {
  .ph-home-usp-cta-mobile {
    display: none;
  }
}

.ph-home-trades-mask-gap {
  margin-top: 48px;
}

.mhsf-privacy-link {
  color: #bf953f;
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PIXELHAFEN DIGITAL — FORM CSS
   Premium form styling for .mhsf-* classes.
   Matches global dark/gold design system.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── WRAPPER ────────────────────────────────────────────────────────────── */

.mhsf-wrapper {
  width: 100%;
  max-width: 100%;
}

.mhsf-wrapper > .mhsf-wrapper {
  width: 100%;
  max-width: 100%;
}

/* ── FORM ───────────────────────────────────────────────────────────────── */

.mhsf-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── ROW / GROUP LAYOUT ─────────────────────────────────────────────────── */

.mhsf-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 8px;
}

.mhsf-row:last-child {
  margin-bottom: 0;
}

.mhsf-group {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 22px;
}

.mhsf-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, #BF953F 0%, rgba(252, 246, 186, 0.95) 50%, #B38728 100%);
  transition: width 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  z-index: 2;
}

.mhsf-group:focus-within::after {
  width: 100%;
}

.mhsf-group:has(.mhsf-textarea)::after,
.mhsf-group:has(.mhsf-button)::after,
.mhsf-group:has(button)::after,
.mhsf-group:has([type="submit"])::after {
  display: none;
}

.mhsf-group--full {
  flex: 1 1 100%;
}

.mhsf-group--half {
  flex: 1 1 calc(50% - 10px);
}

@media (max-width: 768px) {
  .mhsf-row {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
  .mhsf-group--half {
    flex: 1 1 100%;
    width: 100%;
    min-width: 100%;
  }
}

/* ── FLOATING LABELS ────────────────────────────────────────────────── */

.mhsf-label {
  position: absolute;
  top: 37px;
  left: 2px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  transition:
    top 0.32s cubic-bezier(0.19, 1, 0.22, 1),
    font-size 0.32s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.32s ease,
    letter-spacing 0.32s ease;
  white-space: nowrap;
  z-index: 1;
}

.mhsf-group:has(.mhsf-textarea) .mhsf-label {
  top: 36px;
  left: 16px;
}

/* Floated state: focused or has value */
.mhsf-group:focus-within .mhsf-label,
.mhsf-group.ph-has-value .mhsf-label {
  top: 2px;
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(191, 149, 63, 0.8);
}

.mhsf-group:has(.mhsf-textarea):focus-within .mhsf-label,
.mhsf-group:has(.mhsf-textarea).ph-has-value .mhsf-label {
  top: 2px;
  left: 2px;
}

/* ── DESCRIPTION ────────────────────────────────────────────────────────── */

.mhsf-description {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── SHARED INPUT BASE ──────────────────────────────────────────────────── */

.mhsf-input,
.mhsf-select {
  width: 100%;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 0.94rem;
  font-weight: 400;
  color: #ededed;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  padding: 15px 2px;
  outline: none;
  transition: border-color 0.4s ease;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}

.mhsf-textarea {
  width: 100%;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 0.94rem;
  font-weight: 400;
  color: #ededed;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.4s ease, background 0.4s ease;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}

.mhsf-input:-webkit-autofill,
.mhsf-input:-webkit-autofill:hover,
.mhsf-input:-webkit-autofill:focus,
.mhsf-select:-webkit-autofill,
.mhsf-select:-webkit-autofill:hover,
.mhsf-select:-webkit-autofill:focus,
.mhsf-textarea:-webkit-autofill,
.mhsf-textarea:-webkit-autofill:hover,
.mhsf-textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #0d0d0d inset !important;
  -webkit-text-fill-color: #ededed !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 0 !important;
  caret-color: #ededed;
  transition: background-color 5000s ease-in-out 0s;
}

.mhsf-input::placeholder,
.mhsf-textarea::placeholder {
  color: transparent;
  transition: color 0.2s ease;
}

.mhsf-group:focus-within .mhsf-input::placeholder,
.mhsf-group:focus-within .mhsf-textarea::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.mhsf-input:hover,
.mhsf-select:hover {
  border-color: rgba(191, 149, 63, 0.22);
}

.mhsf-textarea:hover {
  border-color: rgba(191, 149, 63, 0.18);
  background: rgba(255, 255, 255, 0.028);
}

.mhsf-input:focus,
.mhsf-select:focus {
  border-color: rgba(191, 149, 63, 0.15);
  background: transparent;
  box-shadow: none;
}

.mhsf-textarea:focus {
  border-color: rgba(191, 149, 63, 0.32);
  background: rgba(191, 149, 63, 0.016);
  box-shadow: none;
}

/* ── SELECT ─────────────────────────────────────────────────────────────── */

.mhsf-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(191,149,63,0.55)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 13px;
  padding-right: 24px;
}

.mhsf-select option {
  background: #111;
  color: #f2f2f2;
  padding: 10px;
}

/* ── TEXTAREA ───────────────────────────────────────────────────────────── */

.mhsf-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.65;
}

/* ── CHECKBOX & RADIO ───────────────────────────────────────────────────── */

.mhsf-checkbox,
.mhsf-radio {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  padding: 8px 0;
  transition: color 0.3s ease;
  position: relative;
}

.mhsf-checkbox:hover,
.mhsf-radio:hover {
  color: rgba(255, 255, 255, 0.85);
}

.mhsf-checkbox input[type="checkbox"],
.mhsf-radio input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  position: relative;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  margin: 0;
  flex-shrink: 0;
}

.mhsf-checkbox input[type="checkbox"] {
  border-radius: 6px;
}

.mhsf-radio input[type="radio"] {
  border-radius: 50%;
}

.mhsf-checkbox input[type="checkbox"]:hover,
.mhsf-radio input[type="radio"]:hover {
  border-color: rgba(191, 149, 63, 0.4);
  background: rgba(191, 149, 63, 0.05);
}

.mhsf-checkbox input[type="checkbox"]:checked,
.mhsf-radio input[type="radio"]:checked {
  border-color: #bf953f;
  background: linear-gradient(135deg, #bf953f 0%, #b38728 50%, #aa771c 100%);
  box-shadow: 0 0 12px rgba(191, 149, 63, 0.3);
}

.mhsf-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #0d0d0d;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.mhsf-radio input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0d0d0d;
}

.mhsf-checkbox input[type="checkbox"]:focus,
.mhsf-radio input[type="radio"]:focus {
  box-shadow: 0 0 0 3px rgba(191, 149, 63, 0.15);
}

/* ── BUTTON ─────────────────────────────────────────────────────────────── */

.mhsf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 17px 32px;
  margin-top: 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0d0d0d;
  -webkit-text-fill-color: #0d0d0d;
  background: linear-gradient(
    110deg,
    #BF953F 0%,
    #FCF6BA 22%,
    #B38728 44%,
    #FBF5B7 66%,
    #AA771C 88%,
    #BF953F 100%
  );
  background-size: 200% 100%;
  animation: ph-gold-flow 6s ease-in-out infinite;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  box-shadow:
    0 6px 24px rgba(191, 149, 63, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mhsf-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: ph-shimmer-sweep 4s ease-in-out infinite;
  pointer-events: none;
  border-radius: 9999px;
}

.mhsf-button:hover,
.mhsf-button:focus {
  transform: translateY(-2px);
  box-shadow:
    0 10px 36px rgba(191, 149, 63, 0.32),
    0 4px 12px rgba(0, 0, 0, 0.25);
  filter: brightness(1.05);
  outline: none;
}

.mhsf-button:active {
  transform: translateY(0);
}

.mhsf-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(0.3);
}

/* ── ERROR MESSAGE ──────────────────────────────────────────────────────── */

.mhsf-error {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #e74c3c;
  margin-top: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(231, 76, 60, 0.06);
  border-left: 3px solid rgba(231, 76, 60, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: mhsf-shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes mhsf-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-4px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
}

/* Invalid state on inputs */
.mhsf-input:invalid:not(:placeholder-shown),
.mhsf-select:invalid:not(:placeholder-shown),
.mhsf-textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(231, 76, 60, 0.4);
}

/* ── SUCCESS MESSAGE ────────────────────────────────────────────────────── */

.mhsf-success {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 32px 28px;
  border-radius: 14px;
  background: rgba(191, 149, 63, 0.04);
  border: 1px solid rgba(191, 149, 63, 0.18);
  text-align: center;
  line-height: 1.6;
  box-shadow:
    0 0 30px rgba(191, 149, 63, 0.08),
    0 0 60px rgba(191, 149, 63, 0.04);
  animation: mhsf-success-in 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.mhsf-success strong {
  background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  filter: drop-shadow(0 0 12px rgba(191,149,63,0.35)) drop-shadow(0 0 25px rgba(191,149,63,0.2));
}

.mhsf-success svg {
  filter: drop-shadow(0 0 10px rgba(191,149,63,0.4)) drop-shadow(0 0 20px rgba(191,149,63,0.2));
}

.mhsf-success span,
.mhsf-success br ~ * {
  color: rgba(255, 255, 255, 0.7);
}

.mhsf-error,
.mhsf-success {
  width: 100%;
}

@keyframes mhsf-success-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ph-consult-top-run {
  0% {
    transform: translate3d(-140%, 0, 0);
    opacity: 0;
  }
  10% {
    opacity: 0.24;
  }
  32% {
    opacity: 0.92;
  }
  68% {
    opacity: 0.92;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translate3d(140%, 0, 0);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   15-MINUTE CONSULTATION SECTION — HOMEPAGE
   Eye-catching section with animated glowing border around form container
   ═══════════════════════════════════════════════════════════════════════════ */

.ph-consult-section {
  position: relative;
  padding: clamp(72px, 8vw, 120px) 0;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(191, 149, 63, 0.08) 0%,
      transparent 45%
    ),
    linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #050505 100%);
  overflow: hidden;
}

.ph-consult-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(840px, 82vw);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(191, 149, 63, 0.3),
    transparent
  );
}

.ph-consult-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

.ph-consult-text {
  text-align: left;
}

.ph-consult-text .ph-eyebrow {
  margin-bottom: 20px;
}

.ph-consult-text h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #f2f2f2;
  margin-bottom: 24px;
}

.ph-consult-heading-number {
  display: inline-block;
  font-family: var(--ph-font-number);
  font-size: 1.02em;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  color: #e3c05b;
  text-rendering: geometricPrecision;
}

.ph-consult-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.ph-consult-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.ph-consult-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.02);
}

.ph-consult-badge svg {
  width: 14px;
  height: 14px;
  stroke: #bf953f;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.ph-consult-badge-number {
  font-family: var(--ph-font-number);
  font-size: 1.45em;
  font-weight: 700;
  line-height: 1;
  color: #e3c05b;
  font-variant-numeric: lining-nums tabular-nums;
}

/* ── PREMIUM FORM CONTAINER ────────────────────────────────────────────── */

.ph-consult-form-wrap {
  position: relative;
  padding: 0;
  border-radius: 20px;
  background: transparent;
  animation: none;
  box-shadow: none;
}

.ph-consult-form-wrap::before {
  display: none;
}

.ph-consult-form-inner {
  background: #09090e;
  border-radius: 20px;
  border: 1px solid rgba(191, 149, 63, 0.13);
  padding: clamp(40px, 5.5vw, 60px) clamp(36px, 5vw, 52px);
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.ph-consult-form-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(191, 149, 63, 0.14) 18%,
    rgba(252, 246, 186, 0.38) 50%,
    rgba(191, 149, 63, 0.14) 82%,
    transparent 100%
  );
  box-shadow:
    0 0 12px rgba(191, 149, 63, 0.08),
    0 0 26px rgba(252, 246, 186, 0.04);
  pointer-events: none;
  z-index: 1;
}

.ph-consult-form-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  min-width: 120px;
  max-width: 220px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(191, 149, 63, 0.12) 16%,
    rgba(252, 246, 186, 0.92) 48%,
    rgba(255, 245, 196, 1) 50%,
    rgba(191, 149, 63, 0.18) 84%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow:
    0 0 10px rgba(252, 246, 186, 0.36),
    0 0 24px rgba(191, 149, 63, 0.22),
    0 0 42px rgba(252, 246, 186, 0.12);
  filter: blur(0.2px);
  pointer-events: none;
  z-index: 2;
  animation: ph-consult-top-run 5.8s cubic-bezier(0.55, 0.08, 0.21, 0.98)
    infinite;
}

.ph-consult-form-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 6px;
  text-align: center;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

.ph-consult-form-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.32);
  text-align: center;
  margin-bottom: 44px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .ph-consult-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .ph-consult-text {
    text-align: center;
  }
  .ph-consult-text p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .ph-consult-badges {
    justify-content: center;
  }
  .ph-consult-form-wrap {
    max-width: 520px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .ph-consult-section {
    padding: clamp(48px, 7vw, 72px) 0;
  }
  .ph-consult-form-inner {
    padding: 28px 18px;
  }
  .ph-consult-form-title {
    font-size: 1.45rem;
  }
  .ph-consult-form-subtitle {
    font-size: 0.76rem;
    margin-bottom: 28px;
  }
  .mhsf-input,
  .mhsf-select {
    font-size: 0.88rem;
    padding: 13px 2px;
  }
  .mhsf-textarea {
    font-size: 0.88rem;
    padding: 12px 14px;
  }
  .mhsf-row {
    gap: 20px;
    margin-bottom: 20px;
  }
  .mhsf-button {
    width: 100%;
    padding: 15px 28px;
    font-size: 1rem;
    margin-top: 16px;
  }
  .ph-consult-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    gap: 6px;
  }
  .ph-consult-text h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}
