.mobile-platform-section {
  background: linear-gradient(180deg, #fff, #fffaf7);
}

.mobile-platform {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: center;
}

.app-note {
  margin: 0 0 22px;
  color: #333844;
  font-weight: 800;
}

.mini-feature-grid,
.feature-list-grid {
  display: grid;
  gap: 16px;
}

.mini-feature-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.mini-feature-grid div,
.feature-list-grid div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 17px;
  box-shadow: 0 10px 30px rgba(20, 18, 28, .055);
}

.mini-feature-grid b,
.feature-list-grid h3 {
  display: block;
  margin: 0 0 6px;
  color: #18171c;
  font-size: 17px;
  line-height: 1.2;
}

.mini-feature-grid span,
.feature-list-grid p {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.marketplace-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid #ffe5d2;
  border-radius: 30px;
  background: linear-gradient(135deg, #1a171d 0%, #2a1607 52%, #fff 52%, #fffaf7 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 28px;
}

.marketplace-visual:before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 24px;
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(270px, 76vw);
  border: 10px solid #111217;
  border-radius: 34px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
}

.phone-top {
  width: 76px;
  height: 7px;
  border-radius: 999px;
  background: #15151b;
  margin: 0 auto 14px;
}

.app-bar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  background: #16161c;
  color: #fff;
  border-radius: 18px;
  padding: 14px;
}

.app-bar b {
  font-size: 18px;
}

.app-bar span {
  font-size: 11px;
  color: #ffdabf;
  font-weight: 900;
}

.price-ticker {
  display: grid;
  gap: 3px;
  margin: 14px 0;
  padding: 15px;
  border-radius: 18px;
  background: #fff8f3;
  border: 1px solid #ffe7d6;
}

.price-ticker span,
.price-ticker em {
  font-style: normal;
  color: #767985;
  font-size: 12px;
  font-weight: 800;
}

.price-ticker strong {
  color: #17171d;
  font-size: 17px;
}

.vendor-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.vendor-row > span {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), #17171d);
}

.vendor-row b,
.vendor-row small {
  display: block;
}

.vendor-row small {
  color: var(--muted);
  font-weight: 800;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.app-grid div {
  border-radius: 14px;
  background: #17171d;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  padding: 12px 8px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 18px 40px rgba(20, 18, 28, .14);
  min-width: 150px;
}

.floating-card b,
.floating-card span {
  display: block;
}

.floating-card b {
  color: #17171d;
  line-height: 1.15;
}

.floating-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-top: 4px;
}

.fc-one {
  left: 8%;
  top: 18%;
}

.fc-two {
  right: 7%;
  bottom: 18%;
}

.contact-fab {
  --fab-size: 64px;
  --fab-right: 28px;
  --fab-bottom: 28px;
  --fab-shadow: 0 18px 45px rgba(227,98,6, .28);
  position: fixed;
  right: calc(var(--fab-right) + env(safe-area-inset-right));
  bottom: calc(var(--fab-bottom) + env(safe-area-inset-bottom));
  width: var(--fab-size);
  height: var(--fab-size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f47316 0%, #e36206 100%);
  color: #fff;
  box-shadow: var(--fab-shadow);
  z-index: 70;
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(.92);
  animation:
    contactFabEnter 640ms cubic-bezier(0.22, 1, 0.36, 1) 200ms both,
    contactFabShadow 6.5s ease-in-out 1.1s infinite;
  -webkit-tap-highlight-color: transparent;
}

.contact-fab-inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: inherit;
  animation: contactFabFloat 6.5s ease-in-out 1.1s infinite;
  will-change: transform;
}

.contact-fab svg {
  width: 28px;
  height: 28px;
  display: block;
}

.contact-fab:hover {
  background: linear-gradient(180deg, #ff8127 0%, #f06d10 100%);
}

.contact-fab:active {
  transform: translate3d(0, 0, 0) scale(.96);
}

.contact-fab:focus-visible {
  outline: 3px solid rgba(227,98,6, .22);
  outline-offset: 4px;
}

@keyframes contactFabEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0) scale(.92);
  }

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

@keyframes contactFabFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -1.5px, 0) scale(1.04);
  }
}

@keyframes contactFabShadow {
  0%, 100% {
    box-shadow: 0 18px 45px rgba(227,98,6, .28);
  }

  50% {
    box-shadow: 0 22px 54px rgba(227,98,6, .34);
  }
}

@media (hover: hover) and (pointer: fine) {
  .contact-fab:hover {
    transform: translate3d(0, 0, 0) scale(1.08);
    box-shadow: 0 22px 54px rgba(227,98,6, .34);
  }
}

@media (max-width: 1024px) {
  .contact-fab {
    --fab-size: 60px;
    --fab-right: 22px;
    --fab-bottom: 22px;
  }

  .contact-fab svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 640px) {
  .contact-fab {
    --fab-size: 56px;
    --fab-right: 18px;
    --fab-bottom: 18px;
  }

  .contact-fab svg {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-fab,
  .contact-fab-inner {
    animation: none !important;
    transition: none !important;
  }

  .contact-fab {
    opacity: 1;
    transform: none;
  }
}

.signal-line {
  position: absolute;
  z-index: 1;
  width: 72%;
  height: 72%;
  border: 1px solid rgba(227,98,6, .18);
  border-radius: 50%;
  animation: pulse 4.6s infinite;
}

.app-hero {
  background: linear-gradient(180deg, #fff, #fffaf6);
}

.hero-app-visual {
  min-height: 420px;
}

.feature-list-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.feature-list-grid h3 {
  font-size: 19px;
}

.app-band {
  background: #fafafa;
}

.app-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.check-grid span {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 13px 14px 13px 38px;
  color: #333844;
  font-weight: 900;
  line-height: 1.25;
}

.check-grid span:before {
  content: "";
  position: absolute;
  left: 14px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px #ffefe4;
}

.app-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}

.app-panel h3 {
  margin: 0 0 20px;
  font-size: 24px;
  color: #17171d;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.flow-steps span {
  background: #fff9f4;
  border: 1px solid #ffe6d4;
  border-radius: 16px;
  text-align: center;
  padding: 18px 8px;
  font-weight: 900;
  color: #17171d;
}

.dark-panel {
  background: #15151b;
  border-color: #15151b;
  color: #fff;
}

.dark-panel h3 {
  color: #fff;
}

.dashboard-lines {
  display: grid;
  gap: 12px;
}

.dashboard-lines span {
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(90deg, #2c2d35, #e36206);
}

.dashboard-lines span:nth-child(2) {
  width: 78%;
}

.dashboard-lines span:nth-child(3) {
  width: 92%;
  background: linear-gradient(90deg, #2c2d35, #777b86);
}

.dashboard-lines span:nth-child(4) {
  width: 65%;
}

.footer {
  background: #111116;
  color: #fff;
  padding: 54px 0 24px;
  margin-top: 45px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.footer-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #fff;
  text-decoration: none;
}

.footer-logo img {
  width: 74px;
  background: #fff;
  border-radius: 12px;
  padding: 2px;
}

.footer-logo span {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.footer h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ffd4b6;
  margin: 5px 0 14px;
}

.footer p {
  color: #c8cad2;
  margin: 0;
  max-width: 390px;
}

.footer a {
  display: block;
  color: #f4f4f6;
  text-decoration: none;
  font-weight: 800;
  margin: 10px 0;
}

.footer a:hover {
  color: #ffd4b6;
}

.footer-contact {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 18px;
  padding-top: 16px;
}

.footer-contact b,
.footer-contact span {
  display: block;
}

.footer-contact span {
  color: #c8cad2;
  margin-top: 5px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 34px;
  padding-top: 20px;
  color: #aeb1bd;
  font-size: 14px;
}

.faq-section {
  background: linear-gradient(180deg, #fff, #fffaf7);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 18, 28, .06);
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 20px 18px;
  background: #fff;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: #17171d;
  font: 900 17px/1.35 Inter, Arial, sans-serif;
  transition: background-color .18s ease, color .18s ease;
}

.faq-toggle:focus-visible {
  outline: 2px solid rgba(227,98,6, .28);
  outline-offset: -2px;
}

.faq-toggle span:first-child {
  flex: 1;
  padding-right: 8px;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  margin-top: 2px;
  transition: transform .24s ease;
}

.faq-icon i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2.2px;
  background: var(--red);
  border-radius: 99px;
  transform: translate(-50%, -50%);
  transition: transform .24s ease, opacity .18s ease, background-color .18s ease;
}

.faq-icon i:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-item.open .faq-icon i:last-child {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(.1);
}

.faq-item.open {
  border-color: rgba(227,98,6, .18);
  box-shadow: 0 16px 40px rgba(20, 18, 28, .08);
}

.faq-toggle:hover .faq-icon i {
  background: #a84600;
}

.faq-toggle:hover {
  background: #fffaf9;
}

.faq-panel {
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  overflow: hidden;
  transition: max-height .32s cubic-bezier(.2,.7,.2,1), opacity .22s ease, transform .22s ease;
}

.faq-content {
  padding: 0 20px 20px;
}

.faq-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

.contact-hero .visual {
  min-height: 320px;
}

.contact-hero .visual.contact-hero-visual {
  padding: 14px;
}

.contact-hero .contact-hero-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  border-radius: 32px;
  border: 1px solid rgba(227,98,6, .10);
  background:
    radial-gradient(circle at 50% 12%, rgba(227,98,6, .06), transparent 46%),
    linear-gradient(180deg, #fff, #fffbf8);
  box-shadow: 0 22px 70px rgba(20, 18, 28, .10);
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  opacity: 0;
  transform: translateY(24px) scale(.97);
  animation: contactHeroCardEnter 840ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
}

.contact-hero .contact-hero-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(227,98,6, .06);
  pointer-events: none;
}

.contact-hero-lottie {
  width: 100%;
  height: clamp(250px, 28vw, 340px);
  min-height: 250px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .32s ease, transform .32s ease;
  transition-delay: 150ms;
  display: grid;
  place-items: center;
  flex: 1 1 auto;
}

.contact-hero-lottie.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.contact-hero-lottie svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
  max-width: none !important;
  max-height: none !important;
  transform: translateY(0) scale(1);
  transform-origin: center center;
}

.contact-hero-visual-frame {
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

.contact-hero-copy {
  width: min(100%, 430px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding-top: 2px;
}

.contact-hero-title {
  margin: 0;
  color: #111;
  font-size: clamp(18px, 1.6vw, 20px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.01em;
}

.contact-hero-description {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.55;
  font-weight: 400;
}

.contact-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(227,98,6, .08);
  border: 1px solid rgba(227,98,6, .12);
  color: #b9560f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}


@keyframes contactHeroCardEnter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.97);
  }

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

@media (max-width: 1040px) {
  .contact-hero .visual.contact-hero-visual {
    padding: 16px;
  }

  .contact-hero-lottie {
    height: clamp(230px, 34vw, 300px);
    min-height: 230px;
  }
}

@media (max-width: 640px) {
  .contact-hero .visual.contact-hero-visual {
    padding: 14px;
  }

  .contact-hero .contact-hero-card {
    padding: 16px;
    gap: 12px;
  }

  .contact-hero-lottie {
    height: clamp(210px, 52vw, 260px);
    min-height: 210px;
  }

  .contact-hero-copy {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  .contact-hero .contact-hero-card,
  .contact-hero-lottie {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.contact-section {
  background: linear-gradient(180deg, #fff, #fffbf8);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(290px, .9fr);
  gap: 24px;
  align-items: start;
}

.form-panel,
.info-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.section-head-lite {
  margin-bottom: 24px;
}

.section-head-lite h2 {
  margin: 0 0 10px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: #19191f;
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #dfe1e7;
  border-radius: 16px;
  padding: 15px 16px;
  font: 700 15px/1.45 Inter, Arial, sans-serif;
  color: #1c1c22;
  background: #fff;
  transition: border-color .16s, box-shadow .16s;
}

.field textarea {
  resize: vertical;
  min-height: 150px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(227,98,6, .08);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(227,98,6, .08);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.spacer {
  display: block;
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 7px;
  color: #b35716;
  font-size: 12px;
  font-weight: 800;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-message {
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 15px;
}

.form-message.success {
  background: #f5fff7;
  border: 1px solid #c9eed0;
  color: #156d2a;
}

.form-message.error {
  background: #fffaf6;
  border: 1px solid #f2d5c1;
  color: #a4561f;
}

.info-panel {
  position: sticky;
  top: 102px;
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.info-list div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: #fffaf7;
}

.info-list span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 5px;
}

.info-list b {
  color: #18171c;
  font-size: 15px;
  line-height: 1.35;
}

@media (max-width: 1040px) {
  .mobile-platform,
  .app-split {
    grid-template-columns: 1fr;
  }

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

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

  .marketplace-visual {
    min-height: 390px;
  }

  .fc-one {
    left: 5%;
    top: 14%;
  }

  .fc-two {
    right: 5%;
    bottom: 12%;
  }

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

  .info-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .mobile-platform-section .eyebrow,
  .app-hero .eyebrow {
    font-size: 12px;
  }

  .mini-feature-grid,
  .feature-list-grid,
  .check-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Center all footer content when it stacks on mobile (brand, company links, contact, copyright) */
  .footer-grid > div,
  .footer-bottom { text-align: center; }

  .marketplace-visual {
    min-height: 520px;
    padding: 22px 14px;
    background: linear-gradient(180deg, #1a171d 0%, #2a1607 45%, #fffaf7 45%, #fff 100%);
  }

  .phone-shell {
    width: min(250px, 82vw);
  }

  .floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 260px;
    margin-top: 12px;
  }

  .signal-line {
    width: 84%;
    height: 62%;
  }

  .flow-steps {
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    padding-top: 42px;
  }

  .footer-logo img {
    width: 52px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .spacer {
    display: none;
  }

  .faq-toggle {
    padding: 17px 16px 15px;
    font-size: 16px;
    gap: 14px;
  }

  .faq-content {
    padding: 0 16px 18px;
  }

  .faq-content p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Homepage polish */
.home-page .container {
  width: min(1440px, calc(100% - 56px));
}

.home-page .topbar {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 2px 0 rgba(0, 0, 0, .01);
}

.home-page .nav {
  height: 86px;
  gap: 16px;
}

.home-page .brand {
  min-width: 0;
  gap: 0;
}

.home-page .brand img {
  width: 116px;
  display: block;
}

.home-page .links {
  gap: 5px;
}

.home-page .links a,
.home-page .dropbtn {
  color: #1e1f26;
  transition: color .16s ease, background-color .16s ease, transform .16s ease;
}

.home-page .links a:hover,
.home-page .dropbtn:hover,
.home-page .drop:hover .dropbtn {
  color: var(--red);
}

.home-page .links a[aria-current="page"] {
  position: relative;
  color: var(--red);
}

.home-page .links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
}

.home-page .cta {
  box-shadow: 0 12px 26px rgba(227,98,6, .18);
}

.home-page .hero {
  background: #fff;
  padding: 74px 0 30px;
}

.home-page .hero-grid-home {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

.home-page .hero-copy {
  max-width: 680px;
}

.home-page .hero-badge {
  font-size: 15px;
  padding: 10px 16px;
  border-color: rgba(227,98,6, .22);
}

.home-page .hero-title {
  margin: 22px 0 18px;
  max-width: 720px;
  font-size: clamp(36px, 4.9vw, 66px);
  line-height: 1.02;
  letter-spacing: -.06em;
  font-weight: 900;
  color: #17171d;
}

.home-page .hero-title span {
  display: inline-block;
  margin-right: .12em;
}

.home-page .hero-accent {
  color: var(--red);
}

.home-page .hero-lead {
  max-width: 620px;
  color: #5d6472;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
}

.home-page .hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 30px;
  max-width: 660px;
}

.home-page .hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  border: 1px solid #ece5e0;
  border-radius: 18px;
  background: #fff;
  padding: 14px 13px;
  box-shadow: 0 10px 24px rgba(20, 18, 28, .05);
}

.home-page .feature-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: #fff9f5;
  color: var(--red);
  font-weight: 900;
  border: 1px solid #ffe5d2;
}

.home-page .hero-feature b {
  display: block;
  color: #17171d;
  font-size: 14px;
  line-height: 1.2;
}

.home-page .hero-actions {
  gap: 14px;
}

.home-page .hero-btn {
  min-height: 52px;
  padding-inline: 22px;
}

.home-page .hero-btn .btn-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-left: 10px;
  font-size: 13px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .28);
}

.home-page .secondary-btn .btn-icon {
  background: #f6f7f9;
  border-color: #e1e4ea;
}

.home-page .secondary-btn:hover .btn-icon {
  background: #fff6f0;
  border-color: #ffdac0;
}

.home-page .hero-visual-premium {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  border: 1px solid rgba(220,92,0, .15);
  background: linear-gradient(135deg, #fff 0%, #fffaf6 48%, #fff4ec 100%);
  box-shadow: 0 26px 80px rgba(20, 18, 28, .10);
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease;
}

.home-page .hero-visual-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 90px rgba(20, 18, 28, .14);
}

.hero-solar-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.solar-panel {
  position: absolute;
  background: linear-gradient(135deg, rgba(22, 22, 28, .10), rgba(22, 22, 28, .04));
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 22px;
  transform: skewX(-11deg) rotate(-8deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5);
}

.panel-a {
  width: 300px;
  height: 180px;
  left: -30px;
  top: 30px;
  background-image:
    linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
  background-size: 36px 36px;
}

.panel-b {
  width: 250px;
  height: 160px;
  right: 40px;
  top: 62px;
  opacity: .58;
  background-image:
    linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
  background-size: 30px 30px;
}

.panel-c {
  width: 360px;
  height: 210px;
  right: -38px;
  bottom: 12px;
  opacity: .72;
  background-image:
    linear-gradient(rgba(255, 255, 255, .20) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .20) 1px, transparent 1px);
  background-size: 34px 34px;
}

.solar-wave,
.solar-glow {
  position: absolute;
  border-radius: 50%;
}

.solar-wave {
  border: 1px solid rgba(227,98,6, .14);
  background: transparent;
  animation: homePulse 6s ease-in-out infinite;
}

.wave-a {
  width: 340px;
  height: 340px;
  right: -70px;
  bottom: -60px;
}

.wave-b {
  width: 220px;
  height: 220px;
  left: 10%;
  top: 18%;
  animation-delay: -2s;
}

.solar-glow {
  width: 240px;
  height: 240px;
  left: 18%;
  top: 16%;
  background: radial-gradient(circle, rgba(227,98,6, .18), rgba(227,98,6, 0) 68%);
  filter: blur(2px);
}

.hero-visual-reference {
  display: block;
}

.hero-map-bg {
  position: absolute;
  inset: 0;
  opacity: .72;
  background:
    radial-gradient(circle at 12% 40%, rgba(220, 220, 224, .72) 0 7%, transparent 7.4%),
    radial-gradient(circle at 18% 56%, rgba(220, 220, 224, .58) 0 6%, transparent 6.4%),
    radial-gradient(circle at 26% 44%, rgba(220, 220, 224, .44) 0 8%, transparent 8.4%),
    radial-gradient(circle at 42% 24%, rgba(220, 220, 224, .42) 0 6%, transparent 6.4%),
    radial-gradient(circle at 54% 33%, rgba(220, 220, 224, .48) 0 8%, transparent 8.4%),
    radial-gradient(circle at 67% 45%, rgba(220, 220, 224, .4) 0 7%, transparent 7.4%),
    radial-gradient(circle at 79% 30%, rgba(220, 220, 224, .44) 0 6%, transparent 6.4%),
    radial-gradient(circle at 83% 58%, rgba(220, 220, 224, .5) 0 7%, transparent 7.4%),
    radial-gradient(circle at 63% 70%, rgba(220, 220, 224, .34) 0 10%, transparent 10.4%),
    radial-gradient(circle at 33% 74%, rgba(220, 220, 224, .34) 0 10%, transparent 10.4%);
  filter: blur(1px);
}

.hero-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  border: 1px solid rgba(227,98,6, .40);
  transform: translate(-50%, -53%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
}

.hero-ring::before,
.hero-ring::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 2px solid rgba(227,98,6, .38);
}

.hero-ring::after {
  inset: 86px;
  background: radial-gradient(circle, rgba(255, 255, 255, .98), rgba(255, 255, 255, .72));
  box-shadow: 0 20px 48px rgba(20, 18, 28, .09);
}

.hero-central-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .98), rgba(255, 255, 255, .88));
  box-shadow: 0 24px 52px rgba(20, 18, 28, .12);
  border: 1px solid rgba(227,98,6, .10);
}

.hero-central-logo {
  width: 88%;
  height: auto;
  display: block;
}

.hero-orbit-node {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #17171d;
  font-weight: 900;
  line-height: 1.1;
}

.hero-orbit-node small {
  display: block;
  font-size: 12px;
  color: #505562;
  font-weight: 800;
  margin-top: 2px;
}

.node-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg, #ffa96b, #e36206);
  color: #fff;
  box-shadow: 0 14px 30px rgba(227,98,6, .22);
  font-size: 21px;
}

.node-top {
  left: 50%;
  top: 54px;
  transform: translateX(-50%);
}

.node-left {
  left: 64px;
  top: 196px;
}

.node-right {
  right: 52px;
  top: 198px;
}

.node-lower-left {
  left: 70px;
  bottom: 162px;
}

.node-lower-right {
  right: 54px;
  bottom: 158px;
}

.hero-solar-deck {
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: 0;
  height: 255px;
  z-index: 1;
  transform: perspective(1000px) rotateX(16deg);
  transform-origin: center bottom;
}

.solar-board {
  position: absolute;
  bottom: 68px;
  width: 310px;
  height: 170px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .22) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .18) 0 1px, transparent 1px 32px),
    linear-gradient(135deg, #244575, #0f2546);
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: 0 24px 50px rgba(20, 18, 28, .18);
}

.solar-board::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
}

.solar-board-a {
  left: 12px;
  transform: rotate(-20deg);
}

.solar-board-b {
  left: 116px;
  bottom: 34px;
  transform: rotate(-5deg);
  width: 250px;
  height: 150px;
}

.hero-product-stage {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 330px;
  height: 238px;
  z-index: 4;
  transform: translateX(-50%);
}

.stage-glow {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 320px;
  height: 66px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(227,98,6, 0), rgba(227,98,6, .22));
  box-shadow: 0 0 0 16px rgba(227,98,6, .08);
}

.product-tower,
.product-unit {
  position: absolute;
  bottom: 36px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #e8ebf0);
  border: 1px solid rgba(18, 18, 24, .10);
  box-shadow: 0 18px 38px rgba(20, 18, 28, .12);
}

.product-tower::after,
.product-unit::after {
  content: "";
  position: absolute;
  inset: 16px 18px auto;
  height: 86px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(27, 28, 34, .96), rgba(27, 28, 34, .88));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.product-tower::before,
.product-unit::before {
  content: "MPPT Care";
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  color: #848891;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .03em;
}

.tower-a {
  left: 104px;
  width: 82px;
  height: 140px;
}

.tower-b {
  left: 198px;
  width: 86px;
  height: 126px;
}

.unit-a {
  left: 24px;
  width: 96px;
  height: 100px;
}

.unit-b {
  right: 16px;
  width: 96px;
  height: 100px;
}

.unit-c {
  left: 146px;
  bottom: 14px;
  width: 120px;
  height: 92px;
}

.product-unit::after {
  inset: 16px 24px auto;
  height: 50px;
}

.product-unit::before {
  top: 22px;
}

.hero-phone-mockup,
.hero-dashboard-mockup {
  position: absolute;
  z-index: 2;
  width: min(312px, 46%);
  animation: homeFloat 6s ease-in-out infinite;
}

.hero-phone-mockup {
  left: 8%;
  bottom: 18px;
}

.hero-dashboard-mockup {
  right: 7%;
  top: 56px;
  animation-delay: -1.4s;
}

.device-topline {
  width: 94px;
  height: 8px;
  border-radius: 999px;
  background: #17171d;
  margin: 0 auto 12px;
  opacity: .92;
}

.device-topline.dark {
  background: #2f3138;
}

.mock-screen {
  position: relative;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(18, 18, 24, .10);
  box-shadow: 0 22px 60px rgba(20, 18, 28, .18);
  overflow: hidden;
}

.mock-phone-screen {
  padding: 18px;
}

.mock-dashboard-screen {
  padding: 18px;
}

.mock-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #ebecf0;
}

.mock-topbar.darkbar {
  background: #17171d;
  border-color: #17171d;
}

.mock-topbar strong,
.mock-topbar span {
  display: block;
}

.mock-topbar strong {
  color: #17171d;
  font-size: 16px;
  line-height: 1.12;
}

.mock-topbar span {
  color: #7a7f8a;
  font-size: 11px;
  font-weight: 800;
}

.mock-topbar.darkbar strong {
  color: #fff;
}

.mock-topbar.darkbar span {
  color: #ffddc5;
}

.top-status {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(227,98,6, .10);
}

.top-status.dark {
  background: #ff9f5b;
}

.mock-search {
  margin-top: 12px;
  padding: 13px 14px;
  border-radius: 16px;
  background: #fffaf6;
  border: 1px solid #ffe7d5;
  color: #7a7f8a;
  font-size: 12px;
  font-weight: 800;
}

.mock-hero-card {
  margin-top: 12px;
  padding: 15px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #fff9f5);
  border: 1px solid #ffe9d9;
}

.mock-hero-card b,
.mock-hero-card span,
.mock-listing-row b,
.mock-listing-row span,
.dashboard-footer b,
.dashboard-footer span {
  display: block;
}

.mock-hero-card b {
  color: #17171d;
  font-size: 14px;
}

.mock-hero-card span,
.mock-listing-row span,
.dashboard-footer span {
  color: #747a86;
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}

.mock-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.mock-category-grid span,
.mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 14px;
  border: 1px solid #ebedf2;
  background: #fff;
  color: #17171d;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  padding: 8px 10px;
}

.mock-listing-row {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #edf0f4;
}

.mini-pill.dark {
  background: #17171d;
  color: #fff;
  border-color: #17171d;
}

.hero-dashboard-mockup .mock-screen {
  background: #17171d;
  border-color: rgba(255, 255, 255, .12);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.dashboard-stats div {
  border-radius: 16px;
  padding: 14px 12px;
  background: #22232a;
  border: 1px solid rgba(255, 255, 255, .08);
}

.dashboard-stats b {
  display: block;
  color: #b8bcc7;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.dashboard-stats strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 140px;
  margin-top: 14px;
  padding: 18px 6px 8px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(to top, rgba(255, 255, 255, .06) 0 1px, transparent 1px 26px);
  border: 1px solid rgba(255, 255, 255, .06);
}

.dashboard-chart span {
  flex: 1;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, #ffbb8b, #e36206);
  box-shadow: 0 12px 30px rgba(227,98,6, .20);
  animation: barRise 5.8s ease-in-out infinite;
}

.dashboard-chart span:nth-child(2) { height: 68%; animation-delay: -.9s; }
.dashboard-chart span:nth-child(3) { height: 52%; animation-delay: -1.6s; }
.dashboard-chart span:nth-child(4) { height: 88%; animation-delay: -2.1s; }
.dashboard-chart span:nth-child(5) { height: 44%; animation-delay: -2.7s; }
.dashboard-chart span:nth-child(6) { height: 76%; animation-delay: -3.1s; }

.dashboard-footer {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: #fff;
}

.dashboard-footer b {
  font-size: 14px;
}

.hero-badge-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(227,98,6, .10);
  box-shadow: 0 16px 38px rgba(20, 18, 28, .11);
  backdrop-filter: blur(10px);
  animation: homeBadge 5.5s ease-in-out infinite;
}

.hero-badge-card .badge-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(227,98,6, .08);
  flex: 0 0 14px;
}

.hero-badge-card b,
.hero-badge-card small {
  display: block;
}

.hero-badge-card b {
  color: #17171d;
  font-size: 13px;
  line-height: 1.15;
}

.hero-badge-card small {
  color: #6f7480;
  font-size: 11px;
  font-weight: 700;
  margin-top: 3px;
}

.trust-card-left {
  left: 24px;
  top: 22px;
}

.trust-card-right {
  right: 26px;
  top: 22px;
  animation-delay: -1.6s;
}

.trust-card-bottom {
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  animation-delay: -2.8s;
}

.home-stats-section {
  padding-top: 8px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border: 1px solid #f2e6dd;
  border-radius: 28px;
  box-shadow: 0 16px 44px rgba(20, 18, 28, .06);
  overflow: hidden;
}

.stats-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  min-width: 0;
}

.stats-item + .stats-item {
  border-left: 1px solid #f2ece7;
}

.stats-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 15px;
  display: inline-grid;
  place-items: center;
  background: #fff9f5;
  color: var(--red);
  border: 1px solid #ffe8d7;
  font-size: 16px;
}

.stats-item strong {
  display: block;
  color: #17171d;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.04em;
}

.stats-item span:not(.stats-icon) {
  display: block;
  margin-top: 6px;
  color: #60656f;
  font-size: 14px;
  font-weight: 800;
}

@keyframes homeFloat {
  50% { transform: translateY(-10px); }
}

@keyframes homeBadge {
  50% { transform: translateY(-6px); }
}

@keyframes homePulse {
  50% { transform: scale(1.04); opacity: .76; }
}

@keyframes barRise {
  50% { transform: translateY(-6px); }
}

@media (max-width: 1200px) {
  .home-page .hero-grid-home {
    gap: 54px;
  }

  .home-page .hero-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .hero-visual-premium {
    min-height: 540px;
  }

  .hero-ring {
    width: 350px;
    height: 350px;
  }

  .hero-central-mark {
    width: 150px;
    height: 150px;
  }

  .node-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    font-size: 18px;
  }

  .node-left {
    left: 42px;
  }

  .node-right {
    right: 38px;
  }

  .node-lower-left {
    left: 46px;
  }

  .node-lower-right {
    right: 42px;
  }

  .hero-solar-deck {
    transform: perspective(1000px) rotateX(16deg) scale(.95);
  }

  .hero-product-stage {
    transform: translateX(-50%) scale(.95);
    transform-origin: center bottom;
  }
}

@media (max-width: 992px) {
  .home-page .nav {
    height: 80px;
  }

  .home-page .brand img {
    width: 104px;
  }

  .home-page .hero {
    padding-top: 52px;
  }

  .home-page .hero-grid-home {
    grid-template-columns: 1fr;
  }

  .home-page .hero-copy {
    max-width: 760px;
  }

  .home-page .hero-visual-premium {
    min-height: 520px;
    max-width: 840px;
    margin: 6px auto 0;
  }

  .hero-ring {
    width: 300px;
    height: 300px;
  }

  .hero-ring::after {
    inset: 64px;
  }

  .hero-central-mark {
    width: 128px;
    height: 128px;
  }

  .hero-orbit-node {
    gap: 10px;
  }

  .node-top {
    top: 44px;
  }

  .node-left {
    top: 168px;
    left: 24px;
  }

  .node-right {
    top: 170px;
    right: 18px;
  }

  .node-lower-left {
    bottom: 132px;
    left: 24px;
  }

  .node-lower-right {
    bottom: 128px;
    right: 20px;
  }

  .hero-solar-deck {
    height: 214px;
    transform: perspective(1000px) rotateX(16deg) scale(.86);
  }

  .solar-board {
    width: 260px;
    height: 150px;
  }

  .solar-board-b {
    width: 220px;
    height: 132px;
  }

  .hero-product-stage {
    width: 290px;
    height: 210px;
    transform: translateX(-50%) scale(.86);
  }

  .tower-a {
    left: 92px;
  }

  .tower-b {
    left: 170px;
  }

  .unit-a {
    left: 14px;
  }

  .unit-b {
    right: 6px;
  }

  .unit-c {
    left: 122px;
  }

  .trust-card-left {
    left: 18px;
    top: 18px;
  }

  .trust-card-right {
    right: 18px;
    top: 18px;
  }

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-item + .stats-item {
    border-left: 0;
  }

  .stats-item:nth-child(odd) {
    border-right: 1px solid #f2ece7;
  }

  .stats-item:nth-child(-n+2) {
    border-bottom: 1px solid #f2ece7;
  }
}

@media (max-width: 768px) {
  .home-page .container {
    width: min(100% - 32px, 1440px);
  }

  .home-page .nav {
    height: 76px;
  }

  .home-page .brand img {
    width: 96px;
  }

  .home-page .hero {
    padding: 34px 0 24px;
  }

  .home-page .hero-title {
    font-size: clamp(34px, 8vw, 42px);
  }

  .home-page .hero-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .hero-actions {
    flex-direction: row;
  }

  .home-page .hero-visual-premium {
    min-height: 470px;
    padding-bottom: 10px;
  }

  .hero-ring {
    width: 260px;
    height: 260px;
  }

  .hero-ring::after {
    inset: 52px;
  }

  .hero-central-mark {
    width: 114px;
    height: 114px;
  }

  .hero-orbit-node {
    gap: 8px;
  }

  .hero-orbit-node small {
    font-size: 10px;
  }

  .node-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 15px;
  }

  .node-top {
    top: 28px;
  }

  .node-left {
    left: 16px;
    top: 150px;
  }

  .node-right {
    right: 14px;
    top: 150px;
  }

  .node-lower-left {
    left: 18px;
    bottom: 110px;
  }

  .node-lower-right {
    right: 16px;
    bottom: 108px;
  }

  .hero-solar-deck {
    height: 188px;
    transform: perspective(1000px) rotateX(16deg) scale(.74);
  }

  .solar-board {
    width: 226px;
    height: 128px;
    bottom: 62px;
  }

  .solar-board-b {
    width: 188px;
    height: 110px;
    left: 104px;
    bottom: 28px;
  }

  .hero-product-stage {
    width: 258px;
    height: 190px;
    transform: translateX(-50%) scale(.76);
  }

  .tower-a {
    left: 82px;
    width: 74px;
    height: 126px;
  }

  .tower-b {
    left: 154px;
    width: 78px;
    height: 116px;
  }

  .unit-a {
    left: 14px;
    width: 86px;
    height: 92px;
  }

  .unit-b {
    right: 6px;
    width: 86px;
    height: 92px;
  }

  .unit-c {
    left: 122px;
    width: 104px;
    height: 84px;
  }

  .hero-badge-card {
    padding: 11px 13px;
  }

  .home-page .hero-badge-card small {
    font-size: 10px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stats-item {
    padding: 20px 18px;
  }

  .stats-item + .stats-item,
  .stats-item:nth-child(odd),
  .stats-item:nth-child(-n+2) {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #f2ece7;
  }

  .stats-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .home-page .container {
    width: min(100% - 24px, 1440px);
  }

  .home-page .nav {
    height: 72px;
  }

  .home-page .brand img {
    width: 90px;
  }

  .home-page .hero {
    padding-top: 24px;
  }

  .home-page .hero-badge {
    font-size: 13px;
    padding: 9px 14px;
  }

  .home-page .hero-title {
    font-size: 34px;
    line-height: 1.04;
  }

  .home-page .hero-lead {
    font-size: 16px;
  }

  .home-page .hero-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-page .hero-feature {
    padding: 12px 11px;
  }

  .home-page .hero-visual-premium {
    min-height: 420px;
    border-radius: 28px;
  }

  .hero-ring {
    width: 232px;
    height: 232px;
  }

  .hero-ring::after {
    inset: 44px;
  }

  .hero-central-mark {
    width: 104px;
    height: 104px;
  }

  .node-top {
    top: 20px;
  }

  .node-left {
    left: 10px;
    top: 132px;
  }

  .node-right {
    right: 10px;
    top: 132px;
  }

  .node-lower-left {
    left: 12px;
    bottom: 88px;
  }

  .node-lower-right {
    right: 12px;
    bottom: 86px;
  }

  .hero-solar-deck {
    height: 160px;
    transform: perspective(1000px) rotateX(16deg) scale(.64);
  }

  .hero-product-stage {
    width: 228px;
    height: 170px;
    transform: translateX(-50%) scale(.68);
  }

  .trust-card-left,
  .trust-card-right {
    display: none;
  }

  .trust-card-bottom {
    display: flex;
    left: 14px;
    right: 14px;
    bottom: auto;
    top: 14px;
    transform: none;
  }

  .home-page .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .home-page .hero-title {
    font-size: 31px;
  }

  .home-page .hero-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-page .hero-visual-premium {
    min-height: 396px;
  }

  .hero-ring {
    width: 198px;
    height: 198px;
  }

  .hero-central-mark {
    width: 92px;
    height: 92px;
  }

  .node-left,
  .node-right,
  .node-lower-left,
  .node-lower-right {
    display: none;
  }

  .node-top {
    top: 16px;
  }

  .hero-solar-deck {
    height: 150px;
    transform: perspective(1000px) rotateX(16deg) scale(.58);
  }

  .hero-product-stage {
    width: 206px;
    height: 154px;
    transform: translateX(-50%) scale(.60);
  }

  .trust-card-bottom {
    top: 12px;
    left: 12px;
    right: 12px;
  }
}

/* About page redesign */
.about-page .section {
  padding: 72px 0;
}

.about-hero {
  padding: 76px 0 36px;
  background: linear-gradient(180deg, #fff, #fffbf8);
  overflow: hidden;
}

.about-hero-grid,
.about-split,
.about-global-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.about-hero-grid,
.about-global-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.about-split {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
}

.about-hero-copy {
  max-width: 700px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(227,98,6, .28);
}

.about-badge {
  font-size: 15px;
  padding: 10px 16px;
  border-color: rgba(227,98,6, .18);
}

.about-title {
  margin: 22px 0 18px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.07em;
  font-weight: 900;
  color: #16161b;
}

.about-title span {
  display: block;
}

.about-accent {
  color: var(--red);
}

.about-lead {
  max-width: 620px;
  color: #5c6371;
  font-size: clamp(16px, 1.5vw, 20px);
}

.about-actions {
  gap: 14px;
  margin-top: 26px;
}

.about-btn,
.about-secondary {
  min-height: 54px;
}

.about-secondary {
  border-color: #e6e8ee;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #ece7e3;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 18, 28, .04);
  color: #17171d;
  font-size: 13px;
  font-weight: 800;
}

.about-badges i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(227,98,6, .10);
  display: inline-block;
}

.about-hero-visual {
  position: relative;
  min-height: 640px;
  border-radius: 36px;
  border: 1px solid rgba(227,98,6, .14);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .9), rgba(255, 255, 255, .54) 26%, rgba(255,249,245, .9) 65%, rgba(255,244,236, 1)),
    linear-gradient(135deg, #fff 0%, #fffaf7 100%);
  overflow: hidden;
  box-shadow: 0 28px 82px rgba(20, 18, 28, .10);
}

.about-visual-map {
  position: absolute;
  inset: 0;
  opacity: .65;
  background:
    radial-gradient(circle at 16% 44%, rgba(214, 217, 224, .82) 0 8%, transparent 8.4%),
    radial-gradient(circle at 24% 58%, rgba(214, 217, 224, .58) 0 6%, transparent 6.4%),
    radial-gradient(circle at 36% 42%, rgba(214, 217, 224, .4) 0 9%, transparent 9.4%),
    radial-gradient(circle at 52% 26%, rgba(214, 217, 224, .44) 0 7%, transparent 7.4%),
    radial-gradient(circle at 64% 36%, rgba(214, 217, 224, .42) 0 8%, transparent 8.4%),
    radial-gradient(circle at 76% 28%, rgba(214, 217, 224, .48) 0 7%, transparent 7.4%),
    radial-gradient(circle at 84% 54%, rgba(214, 217, 224, .52) 0 7%, transparent 7.4%),
    radial-gradient(circle at 66% 72%, rgba(214, 217, 224, .38) 0 11%, transparent 11.4%),
    radial-gradient(circle at 30% 72%, rgba(214, 217, 224, .36) 0 10%, transparent 10.4%);
}

.about-visual-orbit {
  position: absolute;
  inset: 0;
}

.about-visual-orbit::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(227,98,6, .36);
  transform: translate(-50%, -54%);
}

.about-visual-orbit::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(227,98,6, .12);
  transform: translate(-50%, -54%);
  background: radial-gradient(circle, rgba(255, 255, 255, .95), rgba(255, 255, 255, .72));
  box-shadow: 0 20px 44px rgba(20, 18, 28, .08);
}

.about-visual-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 188px;
  height: 188px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 50px rgba(20, 18, 28, .10);
  border: 1px solid rgba(227,98,6, .10);
}

.about-core-logo {
  width: 112px;
  display: block;
}

.about-core-copy {
  text-align: center;
  margin-top: 6px;
}

.about-core-copy strong,
.about-core-copy span {
  display: block;
}

.about-core-copy strong {
  color: #17171d;
  font-size: 18px;
}

.about-core-copy span {
  color: #666b76;
  font-size: 12px;
  font-weight: 800;
  margin-top: 3px;
}

.orbit-node {
  position: absolute;
  z-index: 3;
  min-width: 138px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(227,98,6, .12);
  box-shadow: 0 16px 36px rgba(20, 18, 28, .10);
  color: #17171d;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.orbit-top {
  left: 50%;
  top: 62px;
  transform: translateX(-50%);
}

.orbit-left {
  left: 42px;
  top: 224px;
}

.orbit-right {
  right: 42px;
  top: 224px;
}

.orbit-bottom-left {
  left: 62px;
  bottom: 166px;
}

.orbit-bottom-right {
  right: 58px;
  bottom: 166px;
}

.about-visual-card {
  position: absolute;
  z-index: 4;
  width: 168px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 18px 42px rgba(20, 18, 28, .12);
  border: 1px solid rgba(227,98,6, .08);
}

.about-visual-card b,
.about-visual-card span {
  display: block;
}

.about-visual-card b {
  color: #17171d;
  font-size: 14px;
  line-height: 1.15;
}

.about-visual-card span {
  color: #656a75;
  font-size: 12px;
  font-weight: 800;
  margin-top: 4px;
}

.card-a {
  left: 46px;
  bottom: 84px;
}

.card-b {
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}

.card-c {
  right: 40px;
  bottom: 86px;
}

.about-solar-base {
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 0;
  height: 220px;
  background:
    linear-gradient(180deg, rgba(227,98,6, 0), rgba(227,98,6, .16)),
    linear-gradient(135deg, #1d4576, #0e2243);
  transform: perspective(1000px) rotateX(18deg);
  transform-origin: center bottom;
  box-shadow: inset 0 16px 26px rgba(255, 255, 255, .06);
}

.about-solar-base::before {
  content: "";
  position: absolute;
  inset: 18px 20px auto;
  height: 150px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .20) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .18) 0 1px, transparent 1px 30px);
  opacity: .46;
}

.about-intro,
.about-mission,
.about-journey,
.about-ecosystem,
.about-diff,
.about-industries,
.about-global {
  background: #fff;
}

.about-center {
  text-align: center;
  justify-content: center;
}

.about-center .section-kicker {
  justify-content: center;
}

.about-center .section-kicker::before {
  display: none;
}

.about-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.about-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 32px rgba(20, 18, 28, .05);
}

.about-list span {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #fff9f5;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  border: 1px solid #ffe7d5;
}

.about-list b {
  display: block;
  font-size: 18px;
  color: #17171d;
  margin-bottom: 6px;
}

.about-list p {
  margin: 0;
  color: var(--muted);
}

.proof-panel {
  border: 1px solid #ece5e0;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #fffaf7);
  box-shadow: 0 18px 50px rgba(20, 18, 28, .08);
  padding: 26px;
}

.proof-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 18px;
}

.proof-top b {
  font-size: 24px;
  color: #17171d;
}

.proof-top span {
  color: #6f7480;
  font-size: 13px;
  font-weight: 800;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.proof-grid div {
  padding: 18px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #eceef3;
}

.proof-grid strong {
  display: block;
  color: #17171d;
  font-size: 20px;
}

.proof-grid span {
  display: block;
  color: #6c7180;
  font-size: 13px;
  font-weight: 800;
  margin-top: 6px;
}

.proof-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #ece5e0;
}

.proof-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 6px;
  box-shadow: 0 0 0 7px rgba(227,98,6, .10);
}

.proof-note p {
  margin: 0;
  color: var(--muted);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.mission-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 14px 38px rgba(20, 18, 28, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.mission-card:hover,
.diff-card:hover,
.ecosystem-node:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(227,98,6, .10);
  border-color: rgba(227,98,6, .18);
}

.mission-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #fff9f5;
  border: 1px solid #ffe7d5;
  color: var(--red);
  font-size: 22px;
  margin-bottom: 16px;
}

.mission-card h3 {
  margin: 0 0 10px;
  color: #17171d;
  font-size: 24px;
}

.mission-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.journey-track::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 52px;
  height: 2px;
  background: linear-gradient(90deg, rgba(227,98,6, .2), rgba(227,98,6, .50), rgba(227,98,6, .2));
}

.journey-step {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 18px 16px;
  box-shadow: 0 14px 38px rgba(20, 18, 28, .05);
  min-height: 168px;
}

.journey-step::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 46px;
  transform: translateX(-50%);
  background: var(--red);
  box-shadow: 0 0 0 6px #fff0e6;
}

.journey-step b {
  display: block;
  margin-top: 40px;
  color: #17171d;
  font-size: 18px;
  line-height: 1.15;
}

.journey-step span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.ecosystem-panel {
  position: relative;
  min-height: 560px;
  border: 1px solid #ece5e0;
  border-radius: 34px;
  background: linear-gradient(180deg, #fff, #fffaf7);
  box-shadow: 0 18px 46px rgba(20, 18, 28, .07);
  overflow: hidden;
  margin-top: 28px;
}

.ecosystem-panel::before {
  content: "";
  position: absolute;
  inset: 54px;
  border-radius: 50%;
  border: 1px solid rgba(227,98,6, .22);
}

.ecosystem-panel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 248px;
  height: 248px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(227,98,6, .10);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 20px 50px rgba(20, 18, 28, .08);
}

.ecosystem-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 184px;
  height: 184px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #fff, #fffaf7);
  border: 1px solid rgba(227,98,6, .10);
  box-shadow: 0 22px 52px rgba(20, 18, 28, .10);
  display: grid;
  place-items: center;
  text-align: center;
}

.ecosystem-logo {
  width: 96px;
}

.ecosystem-core strong {
  display: block;
  margin-top: 4px;
  color: #17171d;
  font-size: 20px;
}

.ecosystem-core span {
  display: block;
  color: #6a6f7a;
  font-size: 12px;
  font-weight: 800;
  margin-top: 3px;
}

.ecosystem-node {
  position: absolute;
  z-index: 3;
  min-width: 172px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(227,98,6, .12);
  box-shadow: 0 18px 40px rgba(20, 18, 28, .10);
  color: #17171d;
  font-weight: 900;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.node-1 { left: 50%; top: 26px; transform: translateX(-50%); }
.node-2 { right: 56px; top: 126px; }
.node-3 { right: 26px; top: 298px; }
.node-4 { right: 120px; bottom: 44px; }
.node-5 { left: 120px; bottom: 44px; }
.node-6 { left: 26px; top: 298px; }
.node-7 { left: 56px; top: 126px; }
.node-8 { left: 50%; bottom: 24px; transform: translateX(-50%); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.diff-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 14px 38px rgba(20, 18, 28, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.diff-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #fff9f5;
  border: 1px solid #ffe7d5;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.diff-card b {
  display: block;
  margin: 14px 0 8px;
  color: #17171d;
  font-size: 18px;
}

.diff-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.industry-grid div {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 18px 14px;
  text-align: center;
  color: #17171d;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(20, 18, 28, .05);
}

.global-map-panel {
  position: relative;
  min-height: 430px;
  border: 1px solid #ece5e0;
  border-radius: 32px;
  background:
    linear-gradient(180deg, #fff, #fffaf6),
    radial-gradient(circle at 20% 45%, rgba(227,98,6, .06), transparent 26%),
    radial-gradient(circle at 74% 38%, rgba(227,98,6, .05), transparent 28%);
  box-shadow: 0 18px 46px rgba(20, 18, 28, .07);
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220, 223, 231, .55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 223, 231, .55) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .28;
}

.map-route {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 52%;
  height: 2px;
  background: linear-gradient(90deg, rgba(227,98,6, .10), rgba(227,98,6, .55), rgba(227,98,6, .10));
  transform: rotate(-14deg);
  transform-origin: center;
}

.map-route::before,
.map-route::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(227,98,6, .12);
}

.map-route::before { left: 0; }
.map-route::after { right: 0; }

.map-point {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(227,98,6, .12);
  box-shadow: 0 18px 38px rgba(20, 18, 28, .10);
  font-weight: 900;
  color: #17171d;
}

.map-point span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(227,98,6, .10);
}

.point-china {
  left: 58px;
  top: 84px;
}

.point-pakistan {
  right: 64px;
  bottom: 82px;
}

.map-summary {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(227,98,6, .10);
  box-shadow: 0 18px 40px rgba(20, 18, 28, .08);
}

.map-summary b,
.map-summary span {
  display: block;
}

.map-summary b {
  color: #17171d;
  font-size: 16px;
}

.map-summary span {
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.55;
}

.about-contact-band {
  background: linear-gradient(135deg, #211106, #e36206);
}

@media (max-width: 1200px) {
  .about-hero-grid,
  .about-split,
  .about-global-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-visual {
    min-height: 600px;
  }

  .journey-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journey-track::before {
    top: 66px;
  }

  .ecosystem-panel {
    min-height: 520px;
  }

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

  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-page .section,
  .about-hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .about-title {
    font-size: clamp(34px, 9vw, 44px);
  }

  .about-hero-visual {
    min-height: 500px;
  }

  .about-visual-core {
    width: 154px;
    height: 154px;
  }

  .about-visual-core .about-core-logo {
    width: 92px;
  }

  .about-visual-orbit::before {
    width: 330px;
    height: 330px;
  }

  .about-visual-orbit::after {
    width: 176px;
    height: 176px;
  }

  .orbit-node {
    min-width: 126px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .orbit-left {
    left: 18px;
    top: 196px;
  }

  .orbit-right {
    right: 18px;
    top: 196px;
  }

  .orbit-bottom-left {
    left: 28px;
    bottom: 130px;
  }

  .orbit-bottom-right {
    right: 28px;
    bottom: 130px;
  }

  .card-a {
    left: 18px;
    bottom: 72px;
  }

  .card-c {
    right: 18px;
    bottom: 72px;
  }

  .about-solar-base {
    height: 180px;
  }

  .mission-grid,
  .diff-grid,
  .industry-grid,
  .proof-grid,
  .journey-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-track::before {
    display: none;
  }

  .journey-step::before {
    left: 22px;
    top: 20px;
    transform: none;
  }

  .journey-step b {
    margin-top: 30px;
  }

  .ecosystem-panel {
    min-height: 560px;
  }

  .ecosystem-panel::before,
  .ecosystem-panel::after {
    transform: translate(-50%, -50%) scale(.84);
  }

  .ecosystem-core {
    width: 148px;
    height: 148px;
  }

  .ecosystem-logo {
    width: 76px;
  }

  .ecosystem-node {
    min-width: 140px;
    font-size: 13px;
  }

  .node-1 { top: 18px; }
  .node-2 { right: 18px; top: 110px; }
  .node-3 { right: 12px; top: 258px; }
  .node-4 { right: 56px; bottom: 36px; }
  .node-5 { left: 56px; bottom: 36px; }
  .node-6 { left: 12px; top: 258px; }
  .node-7 { left: 18px; top: 110px; }
  .node-8 { bottom: 18px; }

  .global-map-panel {
    min-height: 390px;
  }
}

@media (max-width: 560px) {
  .about-page .section,
  .about-hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .about-title {
    font-size: 34px;
  }

  .about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-actions .btn {
    width: 100%;
  }

  .about-badges {
    gap: 8px;
  }

  .about-badges span {
    width: 100%;
    justify-content: flex-start;
  }

  .about-hero-visual {
    min-height: 460px;
  }

  .about-visual-orbit::before {
    width: 264px;
    height: 264px;
  }

  .about-visual-orbit::after {
    width: 132px;
    height: 132px;
  }

  .about-visual-core {
    width: 118px;
    height: 118px;
  }

  .about-core-logo {
    width: 68px;
  }

  .orbit-node {
    min-width: 106px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .orbit-left {
    left: 10px;
    top: 176px;
  }

  .orbit-right {
    right: 10px;
    top: 176px;
  }

  .orbit-bottom-left {
    left: 16px;
    bottom: 112px;
  }

  .orbit-bottom-right {
    right: 16px;
    bottom: 112px;
  }

  .card-a,
  .card-b,
  .card-c {
    width: auto;
    left: 12px;
    right: 12px;
    transform: none;
  }

  .card-a {
    bottom: 68px;
  }

  .card-b {
    bottom: 20px;
  }

  .card-c {
    bottom: 112px;
  }

  .mission-grid,
  .diff-grid,
  .industry-grid,
  .proof-grid,
  .journey-track {
    grid-template-columns: 1fr;
  }

  .journey-track {
    gap: 12px;
  }

  .ecosystem-panel {
    min-height: 620px;
  }

  .ecosystem-panel::before,
  .ecosystem-panel::after {
    transform: translate(-50%, -50%) scale(.62);
  }

  .ecosystem-core {
    width: 128px;
    height: 128px;
  }

  .ecosystem-node {
    min-width: 118px;
    padding: 9px 10px;
  }

  .node-1 { top: 14px; }
  .node-2 { right: 10px; top: 106px; }
  .node-3 { right: 8px; top: 230px; }
  .node-4 { right: 20px; bottom: 28px; }
  .node-5 { left: 20px; bottom: 28px; }
  .node-6 { left: 8px; top: 230px; }
  .node-7 { left: 10px; top: 106px; }
  .node-8 { bottom: 12px; }

  .global-map-panel {
    min-height: 360px;
  }

  .point-china {
    left: 14px;
    top: 52px;
  }

  .point-pakistan {
    right: 14px;
    bottom: 74px;
  }
}

@media (max-width: 380px) {
  .about-title {
    font-size: 30px;
  }

  .about-hero-visual {
    min-height: 420px;
  }

  .about-visual-core {
    width: 104px;
    height: 104px;
  }

  .about-visual-orbit::before {
    width: 220px;
    height: 220px;
  }

  .about-visual-orbit::after {
    width: 112px;
    height: 112px;
  }

  .about-visual-card {
    display: none;
  }

  .ecosystem-panel {
    min-height: 540px;
  }

  .ecosystem-node {
    min-width: 106px;
  }

  .global-map-panel {
    min-height: 330px;
  }
}































.topbar {
  display: none;
}

.mppt-cinematic-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #050505;
}

.mppt-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.mppt-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top right, rgba(0,0,0,.95) 0%, rgba(0,0,0,.82) 22%, rgba(0,0,0,.5) 45%, rgba(0,0,0,.2) 66%, rgba(0,0,0,0) 82%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,.22) 55%, rgba(0,0,0,.86) 100%);
}

.hero-navbar {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-logo img {
  width: 120px;
  height: auto;
  display: block;
}

.hero-nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero-nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  opacity: .92;
}

.hero-nav-links a.active {
  color: #e36206;
  border-bottom: 2px solid #e36206;
  padding-bottom: 10px;
}

.hero-nav-cta {
  background: #e36206;
  color: #fff !important;
  padding: 15px 24px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(227,98,6,.28);
}

.mppt-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(100% - 10vw, 1440px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 92px;
}

.mppt-hero-content {
  width: min(760px, 100%);
  color: #fff;
}

.mppt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 22px;
  border: 1px solid rgba(227,98,6,.65);
  border-radius: 999px;
  background: rgba(227,98,6,.13);
  color: #ffc49a;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 34px;
  backdrop-filter: blur(12px);
}

.mppt-kicker span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #e36206;
  box-shadow: 0 0 0 8px rgba(227,98,6,.18);
}

.mppt-hero-content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6.6vw, 92px);
  line-height: .96;
  letter-spacing: -.07em;
  font-weight: 950;
}

.mppt-hero-content h1 span {
  color: #e36206;
}

/* Per-word hero heading: Care / Delivers orange + larger, that / actually white + smaller */
.mppt-hero-content h1 .hl {
  color: #e36206;
}

.mppt-hero-content h1 .sm {
  color: #fff;
  font-size: 0.82em;
  font-weight: 850;
  letter-spacing: -.03em;
}

.mppt-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.mppt-service-pills a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.23);
  background: rgba(255,255,255,.055);
  font-size: 16px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.mppt-hero-content p {
  margin: 34px 0 0;
  max-width: 760px;
  color: rgba(255,255,255,.66);
  font-size: clamp(18px, 1.45vw, 26px);
  line-height: 1.55;
  font-weight: 650;
}

/* Hero tagline row — "Reliable | Efficient | Caring" */
.mppt-hero-tagline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.mppt-hero-tagline span {
  position: relative;
  color: #fff;
  font-size: clamp(18px, 1.55vw, 26px);
  font-weight: 800;
  letter-spacing: .005em;
}

.mppt-hero-tagline span + span {
  padding-left: 20px;
}

.mppt-hero-tagline span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 24px;
  border-radius: 2px;
  background: rgba(227,98,6,.9);
}

.mppt-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 46px;
}

.mppt-primary-btn,
.mppt-ghost-btn {
  min-width: 300px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  transition: .25s ease;
}

.mppt-primary-btn {
  background: #e36206;
  color: #fff;
}

.mppt-ghost-btn {
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.035);
}

.mppt-primary-btn:hover,
.mppt-ghost-btn:hover {
  transform: translateY(-4px);
}

.mppt-bottom-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.mppt-trust-row {
  width: min(850px, 70%);
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.16);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.mppt-trust-row div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding-right: 38px;
  margin-right: 38px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.mppt-trust-row div:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.mppt-trust-row strong {
  color: #fff;
  font-size: 38px;
  font-weight: 950;
}

.mppt-trust-row span {
  color: rgba(255,255,255,.46);
  font-size: 17px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.08;
}

.mppt-scroll {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 850;
}

.mppt-scroll i {
  width: 42px;
  height: 68px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.3);
  position: relative;
}

.mppt-scroll i::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 6px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  transform: translateX(-50%);
  animation: mpptMouse 1.5s infinite;
}

.mppt-scroll b {
  color: #fff;
  font-size: 26px;
  animation: mpptArrow 1.6s infinite;
}

@keyframes mpptMouse {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 20px); }
}

@keyframes mpptArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 980px) {
  .hero-nav-links {
    display: none;
  }

  .mppt-hero-inner {
    width: min(100% - 36px, 100%);
  }

  .mppt-hero-content h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .mppt-primary-btn,
  .mppt-ghost-btn {
    width: 100%;
    min-width: 0;
  }

  .mppt-bottom-row {
    position: static;
    margin-top: 42px;
    display: block;
  }

  .mppt-trust-row {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mppt-trust-row div {
    border-right: 0;
    margin: 0;
    padding: 0;
  }

  .mppt-scroll {
    margin-top: 26px;
  }
}



.simple-hero-inner {
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 70px;
}

.simple-hero-content {
  max-width: 760px;
}

.simple-hero-content .mppt-kicker {
  margin-bottom: 28px;
  padding: 11px 18px;
  font-size: 14px;
}

.simple-hero-content h1 {
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.98;
  max-width: 850px;
}

.simple-hero-content p {
  max-width: 620px;
  margin-top: 26px;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.6;
}

.simple-hero-content .mppt-service-pills,
.simple-hero-content + .mppt-bottom-row,
.mppt-trust-row {
  display: none !important;
}

.simple-hero-content .mppt-hero-buttons {
  margin-top: 36px;
}

.simple-hero-content .mppt-primary-btn,
.simple-hero-content .mppt-ghost-btn {
  min-width: 250px;
  height: 58px;
  font-size: 17px;
  border-radius: 12px;
}

.simple-hero-inner .mppt-scroll {
  position: absolute;
  right: 42px;
  bottom: 42px;
}

@media (max-width: 768px) {
  .simple-hero-inner {
    padding-top: 120px;
  }

  .simple-hero-content h1 {
    font-size: 44px;
  }

  .simple-hero-inner .mppt-scroll {
    position: static;
    margin-top: 44px;
  }
}


.hero-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  padding: 0 5vw;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.28s ease;
}

.hero-navbar.transparent-nav {
  background: transparent;
  box-shadow: none;
}

.hero-navbar.scrolled {
  height: 74px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.hero-navbar.scrolled .hero-logo img {
  width: 94px;
}

.hero-navbar.scrolled .hero-nav-links a {
  color: #18181f;
}

.hero-navbar.scrolled .hero-nav-links a.active {
  color: #e36206;
}

.hero-navbar.scrolled .hero-nav-cta {
  color: #fff !important;
}

.hero-navbar:hover {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-navbar.scrolled:hover {
  background: rgba(255, 255, 255, 0.96);
}

.hero-logo img {
  width: 120px;
  transition: width 0.28s ease;
}

.hero-nav-links a {
  transition: color 0.25s ease, opacity 0.25s ease;
}

.hero-nav-links a:hover {
  color: #e36206;
  opacity: 1;
}

.hero-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link,
.nav-drop-btn {
  position: relative;
  color: #fff;
  background: transparent;
  border: 0;
  text-decoration: none;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  padding: 28px 0;
  transition: color .25s ease;
}

.nav-link::after,
.nav-drop-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: #e36206;
  transform: translateX(-50%);
  transition: width .25s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown:hover .nav-drop-btn {
  color: #e36206;
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-dropdown:hover .nav-drop-btn::after {
  width: 100%;
}

.nav-drop-btn span {
  display: inline-block;
  margin-left: 4px;
  transition: transform .25s ease;
}

.nav-dropdown {
  position: relative;
}

.premium-menu {
  position: absolute;
  top: 76px;
  left: 50%;
  width: 360px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .18);
  transform: translate(-50%, -10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.nav-dropdown:hover .premium-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.premium-menu a {
  position: relative;
  display: block;
  padding: 15px 16px;
  border-radius: 16px;
  color: #16161d !important;
  text-decoration: none;
  transition: background .22s ease, transform .22s ease;
}

.premium-menu a:hover {
  background: #fff7f2;
  transform: translateX(4px);
}

.premium-menu a b {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}

.premium-menu a small {
  display: block;
  color: #6b6f7a;
  font-size: 13px;
  line-height: 1.45;
}

.products-menu {
  width: 330px;
}

.hero-navbar.scrolled .nav-link,
.hero-navbar.scrolled .nav-drop-btn {
  color: #18181f;
}

.hero-navbar.scrolled .nav-link:hover,
.hero-navbar.scrolled .nav-link.active,
.hero-navbar.scrolled .nav-dropdown:hover .nav-drop-btn {
  color: #e36206;
}


/* Final professional hero navbar + dropdown fix */
.hero-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  padding: 0 5vw;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height .28s ease, background .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.hero-logo img {
  width: 118px;
  height: auto;
  display: block;
  transition: width .28s ease;
}

.hero-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: visible;
}

.nav-link,
.nav-drop-btn,
.hero-nav-cta {
  font-family: Inter, Arial, sans-serif;
}

.nav-link,
.nav-drop-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 92px;
  color: #fff;
  background: transparent;
  border: 0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  padding: 0;
  opacity: .95;
  transition: color .22s ease, opacity .22s ease;
}

.nav-link::after,
.nav-drop-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 25px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #e36206;
  transform: translateX(-50%);
  transition: width .22s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown:hover .nav-drop-btn {
  color: #e36206;
  opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-dropdown:hover .nav-drop-btn::after {
  width: 100%;
}

.nav-drop-btn span {
  margin-left: 6px;
  font-size: 13px;
  transition: transform .22s ease;
}

.nav-dropdown {
  position: relative;
  height: 92px;
  display: flex;
  align-items: center;
}

.premium-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  width: 390px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.nav-dropdown:hover .premium-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.premium-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.premium-menu a {
  position: relative;
  display: block;
  padding: 15px 16px 15px 18px;
  border-radius: 14px;
  color: #15151b !important;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.premium-menu a::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 999px;
  background: #e36206;
  opacity: 0;
  transition: opacity .2s ease;
}

.premium-menu a:hover {
  background: #fff8f3;
  transform: translateX(3px);
}

.premium-menu a:hover::before {
  opacity: 1;
}

.premium-menu b {
  display: block;
  color: #15151b;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.premium-menu small {
  display: block;
  color: #666b76;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.products-menu {
  width: 350px;
}

.hero-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #e36206;
  color: #fff !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(227,98,6,.25);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.hero-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(227,98,6,.33);
  background: #c95400;
}

.hero-navbar.scrolled {
  height: 74px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 34px rgba(0,0,0,.08);
}

.hero-navbar.scrolled .hero-logo img {
  width: 94px;
}

.hero-navbar.scrolled .nav-dropdown,
.hero-navbar.scrolled .nav-link,
.hero-navbar.scrolled .nav-drop-btn {
  height: 74px;
}

.hero-navbar.scrolled .nav-link,
.hero-navbar.scrolled .nav-drop-btn {
  color: #18181f;
}

.hero-navbar.scrolled .nav-link:hover,
.hero-navbar.scrolled .nav-link.active,
.hero-navbar.scrolled .nav-dropdown:hover .nav-drop-btn {
  color: #e36206;
}

.hero-navbar.scrolled .nav-link::after,
.hero-navbar.scrolled .nav-drop-btn::after {
  bottom: 18px;
}

@media (max-width: 980px) {
  .hero-nav-links {
    display: none;
  }
}

.solution-hub {
  background: #fff;
  padding: 78px 0 90px;
}

.hub-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.hub-head span {
  display: inline-block;
  color: #e36206;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.hub-head h2 {
  margin: 0;
  color: #15151b;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.05em;
  font-weight: 900;
}

.hub-head p {
  margin: 16px 0 0;
  color: #666b76;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 650;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hub-card {
  position: relative;
  min-height: 230px;
  padding: 26px;
  border: 1px solid #eceef3;
  border-radius: 24px;
  background: #fff;
  text-decoration: none;
  color: #15151b;
  box-shadow: 0 12px 34px rgba(20, 18, 28, .045);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}

.hub-card::after {
  content: "→";
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: #e36206;
  font-size: 26px;
  font-weight: 900;
  transform: translateX(-6px);
  opacity: .55;
  transition: transform .22s ease, opacity .22s ease;
}

.hub-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227,98,6, .24);
  box-shadow: 0 22px 55px rgba(20, 18, 28, .09);
}

.hub-card:hover::after {
  transform: translateX(0);
  opacity: 1;
}

.hub-card small {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff8f3;
  color: #e36206;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
}

.hub-card h3 {
  margin: 0 0 10px;
  color: #15151b;
  font-size: 23px;
  line-height: 1.16;
  letter-spacing: -.02em;
}

.hub-card p {
  margin: 0;
  max-width: 92%;
  color: #6b707c;
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 650;
}

.product-card small {
  background: #f5f5f6;
  color: #15151b;
}

.app-card {
  background: linear-gradient(135deg, #15151b, #2b1708);
  border-color: rgba(227,98,6, .22);
}

.app-card small {
  background: rgba(255,255,255,.1);
  color: #ffd5b7;
}

.app-card h3,
.app-card p {
  color: #fff;
}

.app-card p {
  color: rgba(255,255,255,.72);
}

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

@media (max-width: 640px) {
  .solution-hub {
    padding: 56px 0 66px;
  }

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

  .hub-card {
    min-height: auto;
    padding: 22px;
  }
}

.home-clean-sections {
  background: #fff;
}

.clean-wrap {
  max-width: 1180px;
}

.clean-block {
  padding: 72px 0;
}

.clean-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.clean-heading span {
  margin-bottom: 18px;
}

.clean-heading h2 {
  max-width: 650px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.clean-heading p {
  max-width: 620px;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: #596170;
}

.clean-offer {
  padding-top: 96px;
}

.clean-heading span,
.clean-center span,
.clean-app-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e36206;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.clean-heading span::before,
.clean-app-copy > span::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #e36206;
}

.clean-heading h2,
.clean-center h2,
.clean-app-copy h2,
.clean-final-cta h2 {
  margin: 0;
  color: #12131a;
  font-size: clamp(32px, 4vw, 48px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 950;
}

.clean-heading p,
.clean-center p,
.clean-app-copy p,
.clean-final-cta p {
  margin: 16px 0 0;
  color: #606674;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 650;
}

.clean-label {
  margin: 44px 0 18px;
  color: #9aa0ad;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
  border-bottom: 1px solid #eceef3;
  padding-bottom: 12px;
}

.clean-label-products {
  margin-top: 52px;
}

.clean-card-grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.clean-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border: 1px solid #e8ebf1;
  border-radius: 20px;
  background: #fff;
  text-decoration: none;
  color: #12131a;
  transition: .22s ease;
}

.clean-card:hover {
  transform: translateY(-5px);
  border-color: rgba(227,98,6, .28);
  box-shadow: 0 24px 60px rgba(20, 18, 28, .08);
}

.clean-card small {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff8f3;
  color: #e36206;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.product-clean-card small {
  background: #f4f5f7;
  color: #30333b;
}

.clean-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 950;
}

.clean-card p {
  margin: 0;
  max-width: 90%;
  color: #656b77;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
}

.clean-card b {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #ffeee1;
  color: #e36206;
  font-size: 15px;
  opacity: .65;
  transition: .22s ease;
}

.clean-card:hover b {
  opacity: 1;
  transform: translateX(4px);
  background: #fff9f4;
}

.clean-stats-block {
  margin: 24px -28px 0;
  padding: 72px 28px;
  background: #fafafa;
  border-radius: 0;
}

.clean-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}

.clean-center span {
  justify-content: center;
}

.clean-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #f0e3da;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.clean-stats div {
  padding: 38px 28px;
  text-align: center;
  border-right: 1px solid #f0e3da;
}

.clean-stats div:last-child {
  border-right: 0;
}

.clean-stats i {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: #fff8f3;
  border: 1px solid #ffe8d7;
  color: #e36206;
  font-style: normal;
  font-weight: 900;
  margin-bottom: 22px;
}

.clean-stats strong {
  display: block;
  color: #12131a;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 950;
}

.clean-stats span {
  display: block;
  margin-top: 10px;
  color: #525865;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  text-transform: capitalize;
}

.clean-app-section {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(420px, 1fr);
  gap: 84px;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 40%, #f7f8fb 100%);
  border-radius: 0;
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}

.clean-app-copy {
  max-width: 560px;
}

.clean-app-copy h2 {
  max-width: 520px;
  line-height: .98;
}

.clean-app-copy p {
  max-width: 520px;
  margin-top: 20px;
}

.clean-app-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 270px));
  gap: 22px;
  margin: 34px 0 0;
}

.clean-app-features div {
  border: 1px solid #e8ebf1;
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  min-height: 116px;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.clean-app-features b {
  display: block;
  color: #12131a;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.clean-app-features p {
  margin: 0;
  color: #69707d;
  font-size: 13px;
  line-height: 1.55;
}

.clean-red-btn,
.clean-dark-btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
}

.clean-red-btn {
  background: #e36206;
  color: #fff;
}

.clean-dark-btn {
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}

.clean-phone-wrap {
  display: grid;
  place-items: center;
  justify-self: end;
  position: relative;
  padding: 28px 0;
}

.clean-phone-wrap::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 560px;
  height: 560px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(229,111,27, .08), transparent 70%);
  pointer-events: none;
}

.clean-phone {
  width: clamp(420px, 36vw, 460px);
  border: 9px solid #12131a;
  border-radius: 32px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 28px 70px rgba(20,18,28,.12);
  animation: cleanPhoneFloat 6s ease-in-out infinite;
}

.phone-notch {
  width: 72px;
  height: 7px;
  border-radius: 999px;
  background: #12131a;
  margin: 0 auto 16px;
}

.phone-header {
  background: #12131a;
  color: #fff;
  border-radius: 14px;
  padding: 14px;
  font-size: 13px;
  font-weight: 900;
}

.phone-header span {
  color: #ffd4b5;
  font-size: 10px;
}

.phone-box {
  margin-top: 14px;
  border: 1px solid #ffe9d9;
  background: #fff9f5;
  border-radius: 14px;
  padding: 14px;
}

.phone-box b,
.phone-box small {
  display: block;
}

.phone-box small {
  margin-top: 5px;
  color: #6a707d;
  font-size: 11px;
  line-height: 1.35;
}

.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.phone-grid span {
  background: #12131a;
  color: #fff;
  border-radius: 10px;
  padding: 11px 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
}

@keyframes cleanPhoneFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 901px) {
  .clean-app-features div:hover {
    transform: translateY(-6px);
    border-color: rgba(227,98,6, .22);
    box-shadow: 0 14px 30px rgba(18, 19, 26, .08);
  }
}

.clean-final-cta {
  margin: 70px 0 30px;
  padding: 70px 32px;
  border-radius: 28px;
  background: #12131a;
  color: #fff;
  text-align: center;
}

.clean-final-cta h2 {
  color: #fff;
}

.clean-final-cta p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,.68);
}

.clean-final-cta div {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

@media (max-width: 900px) {
  .services-grid,
  .products-grid,
  .why-grid,
  .clean-app-section {
    grid-template-columns: 1fr;
  }

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

  .clean-phone-wrap {
    justify-self: center;
    padding: 12px 0 0;
  }

  .clean-phone-wrap::before {
    width: 420px;
    height: 420px;
  }

  .clean-phone {
    width: min(460px, 100%);
  }

  .clean-stats div:nth-child(2) {
    border-right: 0;
  }

  .clean-stats div:nth-child(-n+2) {
    border-bottom: 1px solid #f0e3da;
  }
}

@media (max-width: 560px) {
  .clean-block {
    padding: 54px 0;
  }

  .clean-card {
    min-height: auto;
  }

  .clean-stats {
    grid-template-columns: 1fr;
  }

  .clean-stats div {
    border-right: 0;
    border-bottom: 1px solid #f0e3da;
  }

  .clean-stats div:last-child {
    border-bottom: 0;
  }

  .clean-app-features {
    grid-template-columns: 1fr;
  }

  .clean-app-features div {
    min-height: 110px;
  }

  .clean-final-cta {
    padding: 50px 22px;
  }

  .clean-final-cta div a {
    width: 100%;
  }
}

.scale-business-section {
  padding: 92px 0;
  border-top: 1px solid #f0f1f4;
  border-bottom: 1px solid #f0f1f4;
}

.scale-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items: center;
}

.scale-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e36206;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
}

.scale-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #e36206;
}

.scale-copy h2 {
  margin: 0;
  color: #12131a;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 950;
}

.scale-copy > p {
  margin: 22px 0 0;
  max-width: 660px;
  color: #5e6472;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 650;
}

.scale-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.scale-pillars div {
  border: 1px solid #e8ebf1;
  border-radius: 18px;
  background: #fff;
  padding: 20px;
}

.scale-pillars b {
  display: block;
  color: #12131a;
  font-size: 16px;
  margin-bottom: 8px;
}

.scale-pillars p {
  margin: 0;
  color: #6a707d;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.scale-statement {
  margin-top: 34px;
  padding: 22px 24px;
  border-left: 4px solid #e36206;
  background: #fffaf7;
  color: #343946;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
  border-radius: 0 18px 18px 0;
}

.scale-statement strong {
  display: block;
  margin-top: 4px;
  color: #12131a;
  font-size: 22px;
}

.scale-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid #e8ebf1;
  border-radius: 30px;
  background:
    linear-gradient(rgba(227,98,6, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227,98,6, .035) 1px, transparent 1px),
    linear-gradient(180deg, #fff, #fffaf7);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: 0 24px 70px rgba(20, 18, 28, .06);
  overflow: hidden;
}

.scale-image-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid rgba(227,98,6, .12);
  box-shadow: 0 22px 56px rgba(20, 18, 28, .1);
  display: grid;
  place-items: center;
  z-index: 3;
}

.scale-image-layer img {
  width: 120px;
  height: auto;
}

.scale-node {
  position: absolute;
  z-index: 4;
  min-width: 132px;
  padding: 13px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e8ebf1;
  box-shadow: 0 14px 34px rgba(20, 18, 28, .07);
  color: #12131a;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.node-main {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #e36206;
  color: #fff;
  border-color: #e36206;
}

.node-one {
  left: 50%;
  top: 54px;
  transform: translateX(-50%);
}

.node-two {
  left: 42px;
  top: 204px;
}

.node-three {
  right: 42px;
  top: 204px;
}

.node-four {
  left: 78px;
  bottom: 74px;
}

.node-five {
  right: 78px;
  bottom: 74px;
}

.scale-line {
  position: absolute;
  z-index: 2;
  background: rgba(227,98,6, .22);
  transform-origin: left center;
}

.line-one {
  left: 50%;
  top: 155px;
  width: 1px;
  height: 112px;
}

.line-two {
  left: 170px;
  top: 250px;
  width: 180px;
  height: 1px;
}

.line-three {
  right: 170px;
  top: 250px;
  width: 180px;
  height: 1px;
}

.line-four {
  left: 195px;
  bottom: 137px;
  width: 155px;
  height: 1px;
  transform: rotate(-25deg);
}

.line-five {
  right: 195px;
  bottom: 137px;
  width: 155px;
  height: 1px;
  transform: rotate(25deg);
}

.scale-node,
.scale-image-layer {
  transition: transform .25s ease, box-shadow .25s ease;
}

.scale-node:hover {
  box-shadow: 0 20px 48px rgba(227,98,6, .12);
}

@media (max-width: 960px) {
  .scale-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .scale-visual {
    min-height: 460px;
  }
}

@media (max-width: 560px) {
  .scale-business-section {
    padding: 64px 0;
  }

  .scale-pillars {
    grid-template-columns: 1fr;
  }

  .scale-visual {
    min-height: 520px;
  }

  .scale-node {
    min-width: 115px;
    font-size: 12px;
    padding: 11px 12px;
  }

  .node-two {
    left: 14px;
  }

  .node-three {
    right: 14px;
  }

  .node-four {
    left: 22px;
  }

  .node-five {
    right: 22px;
  }

  .scale-image-layer {
    width: 150px;
    height: 150px;
  }

  .scale-image-layer img {
    width: 100px;
  }
}


.image-card {
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.45)),
    radial-gradient(circle at 80% 20%, rgba(227,98,6,.28), transparent 34%);
}

/* FINAL OVERRIDE: make service/product card images bright */
.clean-card.image-card .card-image {
  height: 205px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  filter: none !important;
  opacity: 1 !important;
  background-blend-mode: normal !important;
}

/* Remove all dark/red overlay layers */
.clean-card.image-card .card-image::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.14) 0%,
    rgba(0, 0, 0, 0.04) 34%,
    rgba(0, 0, 0, 0) 72%
  ) !important;
}

.clean-card.image-card .card-image::after {
  display: none !important;
}

/* Replace the old white square with a small professional arrow badge */
.clean-card.image-card .card-body b {
  background: #fff;
  border: 1px solid #ffe8d7;
  color: #e36206;
  box-shadow: 0 10px 26px rgba(20, 18, 28, 0.06);
}

/* Make sure image URL rules are clean, without dark gradients */
.card-import .card-image { background-image: url("images/import-and-export.jpg") !important; }
.card-sourcing .card-image { background-image: url("images/product-sourcing.jpeg") !important; }
.card-assembling .card-image { background-image: url("images/product-assembling.jpg") !important; }
.card-manufacturing .card-image { background-image: url("images/product-manufactring.jpg") !important; }
.card-solar .card-image { background-image: url("images/solar-services.jpeg") !important; }
.card-installation .card-image { background-image: url("images/complete-solar-installation.jpeg") !important; }
.card-inverter .card-image { background-image: url("images/mppt-care-inverters.png") !important; }
.card-battery .card-image { background-image: url("images/lithium-battery.webp") !important; }

.card-image{
    transition:transform .7s ease;
}

.service-card:hover .card-image{
    transform:scale(1.06);
}

.card-body {
  position: relative;
  flex: 1;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(227,98,6,.025), transparent 46%),
    #fff;
}

.card-body::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(227,98,6,.08);
  pointer-events: none;
}

.image-card h3 {
  min-height: 56px;
}

.image-card p {
  max-width: 96%;
}

.image-card b {
  right: 24px;
  bottom: 24px;
}

.card-import .card-image {
  background-image:
    linear-gradient(135deg, rgba(8,10,16,.18), rgba(227,98,6,.10)),
    url("images/import-and-export.jpg");
}

.card-sourcing .card-image {
  background-image:
    linear-gradient(135deg, rgba(8,10,16,.18), rgba(227,98,6,.10)),
    url("images/product-sourcing.jpeg");
}

.card-assembling .card-image {
  background-image:
    linear-gradient(135deg, rgba(8,10,16,.18), rgba(227,98,6,.10)),
    url("images/product-assembling.jpg");
}

.card-manufacturing .card-image {
  background-image:
    linear-gradient(135deg, rgba(8,10,16,.18), rgba(227,98,6,.10)),
    url("images/product-manufactring.jpg");
}

.card-solar .card-image {
  background-image:
    linear-gradient(135deg, rgba(8,10,16,.18), rgba(227,98,6,.10)),
    url("images/solar-services.jpeg");
}

.card-installation .card-image {
  background-image:
    linear-gradient(135deg, rgba(8,10,16,.18), rgba(227,98,6,.10)),
    url("images/complete-solar-installation.jpeg");
}

.card-inverter .card-image {
  background-image:
    linear-gradient(135deg, rgba(8,10,16,.18), rgba(227,98,6,.10)),
    url("images/mppt-care-inverters.png");
}

.card-battery .card-image {
  background-image:
    linear-gradient(135deg, rgba(8,10,16,.18), rgba(227,98,6,.10)),
    url("images/lithium-battery.webp");
}

/* fallback if image files are missing */
.card-image {
  background-color: #16171d;
  background-blend-mode: overlay;
}

.card-import .card-image {
  background-color: #1d2630;
}

.card-sourcing .card-image {
  background-color: #20252c;
}

.card-assembling .card-image {
  background-color: #272323;
}

.card-manufacturing .card-image {
  background-color: #1d1f24;
}

.card-solar .card-image {
  background-color: #202a24;
}

.card-installation .card-image {
  background-color: #25231d;
}

.card-inverter .card-image {
  background-color: #191a20;
}

.card-battery .card-image {
  background-color: #1f2522;
}

.image-card:hover .card-image::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.30)),
    radial-gradient(circle at 80% 20%, rgba(227,98,6,.38), transparent 34%);
}

.image-card:hover .card-image {
  transform: none;
}

@media (max-width: 900px) {
  .image-card {
    min-height: 390px;
  }

  .card-image {
    height: 170px;
  }
}

@media (max-width: 560px) {
  .image-card {
    min-height: auto;
  }

  .card-image {
    height: 160px;
  }

  .card-body {
    padding: 22px;
  }
}

.how-it-works-section {
  padding: 86px 0;
  border-top: 1px solid #f0f1f4;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.process-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid #e8ebf1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(18,19,26,.055);
}

.process-card small {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #fff8f3;
  color: #e36206;
  font-weight: 950;
  margin-bottom: 34px;
}

.process-card h3 {
  margin: 0 0 14px;
  color: #12131a;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 950;
}

.process-card p {
  margin: 0;
  color: #606674;
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 650;
}

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







/* =========================================================
   FINAL HOMEPAGE SECTION DIVERSITY OVERRIDES
   Stats = dark cinematic
   Why = photo-forward editorial
   How it works = timeline process
========================================================= */

/* ---------- 1) DARK STATS SECTION ---------- */

.clean-stats-block {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 96px max(28px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 18% 18%, rgba(227,98,6, .28), transparent 34%),
    radial-gradient(circle at 82% 80%, rgba(227,98,6, .16), transparent 32%),
    linear-gradient(135deg, #0d0d12 0%, #15151c 100%);
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.clean-stats-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .45;
  pointer-events: none;
}

.clean-stats-block .clean-center {
  position: relative;
  z-index: 2;
}

.clean-stats-block .clean-center span {
  color: #ffc49a;
}

.clean-stats-block .clean-center h2 {
  color: #fff;
  font-size: clamp(34px, 4.4vw, 56px);
}

.clean-stats-block .clean-center p {
  color: rgba(255,255,255,.64);
}

.clean-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 80px rgba(0,0,0,.28);
}

.clean-stats div {
  position: relative;
  padding: 42px 30px;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background .25s ease, transform .25s ease;
}

.clean-stats div:last-child {
  border-right: 0;
}

.clean-stats div:hover {
  background: rgba(227,98,6,.13);
  transform: translateY(-4px);
}

.clean-stats i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(227,98,6,.16);
  border: 1px solid rgba(227,98,6,.36);
  color: #ff974c;
  font-style: normal;
  font-weight: 950;
  margin-bottom: 24px;
}

.clean-stats strong {
  display: block;
  color: #fff;
  font-size: clamp(46px, 5vw, 64px);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 950;
}

.clean-stats span {
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ---------- 3) TIMELINE HOW IT WORKS ---------- */

.how-it-works-section {
  position: relative;
  padding: 96px 0;
  border-top: 1px solid #f0f1f4;
}

.how-it-works-section .clean-heading {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.how-it-works-section .clean-heading span {
  justify-content: center;
}

.how-it-works-section .clean-heading span::before {
  display: none;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 64px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 16.5%;
  right: 16.5%;
  top: 66px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(227,98,6,.34), transparent);
  z-index: 0;
}

.process-card {
  position: relative;
  z-index: 1;
  min-height: 310px;
  padding: 0 30px 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.process-card small {
  width: 132px;
  height: 132px;
  margin: 0 auto 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -.04em;
  box-shadow: 0 22px 60px rgba(18,19,26,.10);
}

.process-card:nth-child(1) small {
  background: #12131a;
  color: #fff;
}

.process-card:nth-child(2) small {
  background: #e36206;
  color: #fff;
  box-shadow: 0 22px 60px rgba(227,98,6,.24);
}

.process-card:nth-child(3) small {
  background: #fff;
  color: #e36206;
  border: 1px solid #ffe7d6;
}

.process-card h3 {
  margin: 0 auto 14px;
  max-width: 300px;
  color: #12131a;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 950;
}

.process-card p {
  margin: 0 auto;
  max-width: 330px;
  color: #606674;
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 650;
}

.how-it-works-section::after {
  content: "Ready to get started?";
  display: block;
  width: fit-content;
  margin: 42px auto 0;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff8f3;
  color: #e36206;
  font-size: 14px;
  font-weight: 900;
}

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

@media (max-width: 980px) {
  .clean-stats,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .clean-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .clean-stats div:last-child {
    border-bottom: 0;
  }

  .process-grid::before {
    display: none;
  }

  .process-card {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .clean-stats-block,
  .how-it-works-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .clean-stats strong {
    font-size: 46px;
  }

  .process-card small {
    width: 104px;
    height: 104px;
    font-size: 28px;
  }
}





.impact-section {
  padding: 70px 0;
}

.impact-inner {
  border-radius: 18px;
  padding: 54px 48px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 20% 90%, rgba(227,98,6,.45), transparent 34%),
    radial-gradient(circle at 80% 95%, rgba(227,98,6,.30), transparent 34%),
    linear-gradient(135deg, #0d0d12, #16161d);
}

.impact-inner > span,
.simple-center-head span {
  display: block;
  color: #e36206;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.impact-inner h2,
.simple-center-head h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.045em;
}

.impact-inner > p,
.simple-center-head p {
  margin: 14px auto 0;
  max-width: 680px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.6;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
}

.impact-grid div {
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,.22);
}

.impact-grid div:last-child {
  border-right: 0;
}

.impact-grid i {
  display: block;
  color: #e36206;
  font-style: normal;
  font-size: 34px;
  margin-bottom: 18px;
}

.impact-grid strong {
  display: block;
  font-size: 54px;
  line-height: .9;
  font-weight: 950;
}

.impact-grid p {
  margin: 14px 0 0;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}

.simple-offer-section,
.simple-process-section {
  padding: 74px 0;
}

.simple-center-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.simple-center-head h2 {
  color: #12131a;
}

.simple-center-head p {
  color: #626977;
}

.simple-offer-grid b,
.simple-process-grid b {
  display: block;
  color: #12131a;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.2;
}

.simple-offer-grid p,
.simple-process-grid p {
  margin: 10px 0 0;
  color: #626977;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
}

.simple-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.simple-offer-grid a {
  min-height: 210px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid #e7eaf0;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  transition: .22s ease;
}

.simple-offer-grid a:hover {
  transform: translateY(-5px);
  border-color: rgba(227,98,6,.24);
  box-shadow: 0 18px 44px rgba(18,19,26,.08);
}

.simple-offer-grid i {
  display: block;
  color: #e36206;
  font-style: normal;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 22px;
}

.simple-offer-action,
.simple-process-action {
  text-align: center;
  margin-top: 36px;
}

.simple-offer-action a,
.simple-process-action a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid #e36206;
  border-radius: 10px;
  color: #e36206;
  text-decoration: none;
  font-weight: 900;
}

.simple-process-section {
  border-radius: 18px;
  background: linear-gradient(180deg, #fafafa, #f6f6f7);
  margin-bottom: 60px;
}

.simple-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  text-align: center;
}

.simple-process-grid::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 52px;
  border-top: 2px dashed rgba(227,98,6,.32);
}

.simple-process-grid div {
  position: relative;
  z-index: 1;
}

.simple-process-grid strong {
  width: 104px;
  height: 104px;
  margin: 0 auto 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #e36206;
  font-size: 32px;
  font-weight: 950;
  box-shadow: 0 14px 36px rgba(18,19,26,.12);
}

.simple-process-grid div:nth-child(2) strong {
  background: #e36206;
  color: #fff;
}

.simple-process-action a {
  background: #e36206;
  color: #fff;
}

/* Homepage Why MPPT Care presentation layout */
.why-timeline-section {
  position: relative;
  padding: 94px 0 88px;
  background: #fff;
  overflow: hidden;
}

.why-timeline-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background:
    radial-gradient(80% 100% at 50% 100%, rgba(227,98,6, .03) 0%, rgba(227,98,6, 0) 72%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='120' viewBox='0 0 280 120'%3E%3Cg fill='none' fill-opacity='.03' stroke='%23e30613' stroke-width='2'%3E%3Cpath d='M0 85c36-25 66-25 102 0s66 25 102 0 66-25 76-20'/%3E%3Cpath d='M0 102c42-18 73-18 114 0s73 18 114 0 31-8 52 0'/%3E%3C/g%3E%3C/svg%3E") center bottom / 280px 120px repeat-x;
  pointer-events: none;
}

.why-timeline-head {
  width: min(100vw - 80px, 1440px);
  max-width: 1440px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 54px;
}

.why-timeline-head span {
  position: relative;
  display: inline-block;
  color: #e36206;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding-bottom: 16px;
}

.why-timeline-head span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: #e36206;
  transform: translateX(-50%);
}

.why-timeline-head h2 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.06em;
  margin: 22px 0 18px;
  color: #12131a;
}

.why-timeline-head p {
  max-width: 820px;
  margin: 0 auto;
  color: #6a707b;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.65;
}

.why-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  width: min(100vw - 80px, 1440px);
  max-width: 1440px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.why-timeline-item {
  min-width: 0;
  position: relative;
}

.why-visual-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 22px;
}

.why-marker-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 14px;
}

.why-icon-circle {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(18, 19, 26, .10), 0 0 0 10px rgba(227,98,6, .035);
}

.why-icon-circle svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #e36206;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: whyFloat 4.5s ease-in-out infinite;
}

.why-connector {
  width: 1px;
  height: 126px;
  position: relative;
  margin-top: 2px;
}

.why-connector::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 8px;
  width: 1px;
  background: repeating-linear-gradient(to bottom, rgba(227,98,6, .8) 0 7px, transparent 7px 12px);
  transform: translateX(-50%);
  border-radius: 999px;
}

.why-connector::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #e36206;
  transform: translateX(-50%);
}

.why-image-shell {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-top: 10px;
}

.why-image-tilt {
  width: min(100%, 286px);
  height: 374px;
  border-radius: 18px;
  overflow: hidden;
  transform: skewX(-10deg);
  box-shadow: 0 22px 42px rgba(18, 19, 26, .10);
  background: #f2f4f8;
  margin-left: -2px;
}

.why-image-tilt img {
  width: calc(100% + 28px);
  height: 100%;
  object-fit: cover;
  display: block;
  transform: skewX(10deg) scale(1.04);
  transform-origin: center;
  transition: transform .45s ease;
  margin-left: -14px;
}

.why-timeline-item:hover .why-image-tilt img {
  transform: skewX(10deg) scale(1.03);
}

.why-feature-copy {
  display: grid;
  grid-template-columns: auto 1px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  text-align: left;
}

.why-feature-number {
  color: #e36206;
  font-size: clamp(64px, 5vw, 72px);
  line-height: .9;
  font-weight: 200;
  letter-spacing: -.08em;
  -webkit-text-stroke: 1px #e36206;
  text-stroke: 1px #e36206;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.why-feature-divider {
  width: 1px;
  height: 86px;
  background: rgba(30, 36, 48, .14);
  margin-top: 6px;
}

.why-feature-text {
  position: relative;
  padding-left: 4px;
  padding-top: 2px;
}

.why-feature-text h3 {
  margin: 0;
  color: #101118;
  font-size: clamp(29px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -.05em;
  font-weight: 900;
}

.why-feature-text p {
  margin: 12px 0 0;
  color: #656b76;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.52;
  max-width: 310px;
}

.why-feature-text span {
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 20px;
  background: #e36206;
  border-radius: 999px;
}

.why-timeline-grid > :nth-child(2) .why-image-shell,
.why-timeline-grid > :nth-child(2) .why-visual-row {
  justify-content: center;
}

.why-timeline-grid > :nth-child(2) .why-marker-column {
  padding-top: 12px;
}

@media (max-width: 980px) {
  .why-timeline-section {
    padding: 76px 0 72px;
  }

  .why-timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
    width: min(100vw - 48px, 980px);
    transform: translateX(-50%);
  }

  .why-timeline-grid > :last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 430px);
  }

  .why-visual-row {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .why-timeline-head h2 {
    font-size: clamp(36px, 6vw, 54px);
  }

  .why-image-tilt {
    width: min(100%, 284px);
    height: 366px;
  }
}

@media (max-width: 640px) {
  .why-timeline-section {
    padding: 64px 0 62px;
  }

  .why-timeline-head {
    margin-bottom: 40px;
    width: 100%;
    left: 0;
    transform: none;
  }

  .why-timeline-head span {
    font-size: 14px;
  }

  .why-timeline-head h2 {
    font-size: 34px;
    line-height: 1.02;
  }

  .why-timeline-head p {
    font-size: 18px;
  }

  .why-timeline-grid,
  .why-timeline-grid > :last-child {
    grid-template-columns: 1fr;
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
    left: 0;
    transform: none;
  }

  .why-visual-row {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }

  .why-marker-column {
    padding-top: 8px;
  }

  .why-icon-circle {
    width: 82px;
    height: 82px;
  }

  .why-icon-circle svg {
    width: 34px;
    height: 34px;
  }

  .why-connector {
    height: 110px;
  }

  .why-image-tilt {
    width: min(100%, 280px);
    height: 332px;
  }

  .why-feature-copy {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
    justify-items: center;
  }

  .why-feature-divider {
    width: 72px;
    height: 1px;
    margin-top: 0;
  }

  .why-feature-text {
    padding-left: 0;
  }

  .why-feature-text p {
    max-width: 100%;
  }
}

@keyframes whyFloat {
  50% {
    transform: translateY(-2px);
  }
}

@media (max-width: 980px) {
  .impact-grid,
  .simple-why-grid,
  .simple-offer-grid,
  .simple-process-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding: 28px 0;
  }

  .simple-process-grid::before {
    display: none;
  }
}

/* Homepage What We Offer redesign */
.offer-image-section {
  padding: 86px 0;
}

.offer-image-head {
  margin-bottom: 48px;
}

.offer-image-head h2 em {
  color: #e36206;
  font-style: normal;
}

.offer-group {
  margin-top: 34px;
}

.offer-group + .offer-group {
  margin-top: 58px;
}

.offer-group-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.offer-group-title span {
  color: #e36206;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.offer-group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #eceef3;
}

.offer-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.products-offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-image-card {
  position: relative;
  min-height: 305px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #111;
  isolation: isolate;
  box-shadow: 0 18px 46px rgba(18, 19, 26, .10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.offer-image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(18, 19, 26, .18);
}

.offer-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .75s ease;
  z-index: -3;
}

.offer-image-card:hover .offer-card-bg {
  transform: scale(1.07);
}

.offer-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .28) 45%, rgba(0, 0, 0, .82) 100%),
    radial-gradient(circle at 80% 18%, rgba(227,98,6, .30), transparent 32%);
  z-index: -2;
}

.offer-card-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 1;
}

.offer-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #e36206;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .08em;
}

.offer-card-content h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.offer-card-content p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
  max-width: 95%;
}

.offer-card-arrow {
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 18px;
  transform: translateY(-4px);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease, background .22s ease;
}

.offer-image-card:hover .offer-card-arrow {
  opacity: 1;
  transform: translateY(0);
  background: rgba(255, 255, 255, .22);
}

.offer-import-bg {
  background-image: url("images/import-and-export.jpg");
}

.offer-sourcing-bg {
  background-image: url("images/product-sourcing.jpeg");
}

.offer-assembling-bg {
  background-image: url("images/product-assembling.jpg");
}

.offer-manufacturing-bg {
  background-image: url("images/product-manufactring.jpg");
}

.offer-solar-bg {
  background-image: url("images/solar-services.jpeg");
}

.offer-installation-bg {
  background-image: url("images/complete-solar-installation.jpeg");
}

.offer-inverters-bg {
  background-image: url("images/mppt-care-inverters.png");
}

.offer-batteries-bg {
  background-image: url("images/lithium-battery.webp");
}

.offer-image-section .simple-offer-grid,
.offer-image-section .simple-offer-action {
  display: none;
}

@media (max-width: 980px) {
  .offer-image-section {
    padding: 72px 0;
  }

  .offer-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .offer-image-section {
    padding: 60px 0;
  }

  .offer-image-grid,
  .products-offer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .offer-image-card {
    min-height: 260px;
  }

  .offer-card-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .offer-card-content h3 {
    font-size: 21px;
  }

  .offer-card-content p {
    max-width: 100%;
    font-size: 14px;
  }
}



.testimonial-section {
  padding: 82px 0;
  background: #f7f8fa;
  overflow: hidden;
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 44px;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f7f8fa, transparent);
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f7f8fa, transparent);
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonialScroll 42s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 360px;
  min-height: 430px;
  flex: 0 0 360px;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 14px 36px rgba(18, 19, 26, .055);
}

@keyframes testimonialScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    width: 300px;
    flex-basis: 300px;
  }

  .testimonial-marquee::before,
  .testimonial-marquee::after {
    width: 48px;
  }
}

/* Unified navbar system */
body:not(.home-page) {
  padding-top: 84px;
}

body.home-page {
  padding-top: 0;
}

.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 84px;
  transition: background .24s ease, box-shadow .24s ease, border-color .24s ease, backdrop-filter .24s ease, height .24s ease;
}

.site-navbar.is-transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-navbar.is-solid,
.site-navbar.scrolled {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
}

.site-navbar-inner {
  width: min(100% - 12px, 1440px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
  justify-self: start;
}

.site-brand img {
  width: 110px;
  height: auto;
  display: block;
  transition: width .24s ease;
}

.site-brand b {
  display: block;
  color: #15151b;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.site-brand span {
  display: block;
  margin-top: -2px;
  color: #6b6f7a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}

.site-navbar.is-transparent .site-brand b,
.site-navbar.is-transparent .site-brand span {
  color: #fff;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 0;
  justify-self: center;
}

.site-nav-toggle {
  display: none;
  justify-self: end;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 28px rgba(18, 19, 26, .08);
  cursor: pointer;
  position: relative;
}

.site-nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: #202028;
  transition: transform .24s ease, opacity .2s ease, top .24s ease, background .24s ease;
}

.site-nav-toggle span:nth-child(1) { top: 16px; }
.site-nav-toggle span:nth-child(2) { top: 23px; }
.site-nav-toggle span:nth-child(3) { top: 30px; }

.site-navbar.is-transparent .site-nav-toggle {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: none;
}

.site-navbar.is-transparent .site-nav-toggle span {
  background: #fff;
}

/* Home navbar turns white on scroll (.scrolled) but keeps .is-transparent —
   switch the toggle back to its dark/solid look so it's visible on white. */
.site-navbar.is-transparent.scrolled .site-nav-toggle {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(17, 24, 39, .10);
  box-shadow: 0 12px 28px rgba(18, 19, 26, .08);
}
.site-navbar.is-transparent.scrolled .site-nav-toggle span {
  background: #202028;
}

.site-navbar.nav-open .site-nav-toggle span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.site-navbar.nav-open .site-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-navbar.nav-open .site-nav-toggle span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.nav-link,
.nav-drop-btn,
.nav-cta {
  font-family: Inter, Arial, sans-serif;
}

.nav-link,
.nav-drop-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  padding: 0 14px;
  border: 0;
  border-bottom: 0 !important;
  background: transparent;
  text-decoration: none;
  color: #202028;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: color .22s ease, opacity .22s ease;
}

.site-navbar.is-transparent .nav-link,
.site-navbar.is-transparent .nav-drop-btn,
.site-navbar.is-transparent .nav-link:hover,
.site-navbar.is-transparent .nav-drop-btn:hover {
  color: #fff;
}

.site-navbar.is-transparent .nav-link.active,
.site-navbar.is-transparent .nav-link[aria-current="page"],
.site-navbar.is-transparent .nav-drop-btn.active,
.site-navbar.is-transparent .nav-dropdown:hover .nav-drop-btn {
  color: #e36206;
}

.nav-link::after,
.nav-drop-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: #e36206;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width .22s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-link[aria-current="page"],
.nav-drop-btn.active,
.nav-dropdown:hover .nav-drop-btn {
  color: #e36206;
  opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-link[aria-current="page"]::after,
.nav-drop-btn.active::after,
.nav-dropdown:hover .nav-drop-btn::after {
  width: 100%;
}

.nav-drop-btn {
  gap: 8px;
  background: transparent;
}

.nav-drop-btn span:last-child {
  display: inline-block;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 84px;
}

.premium-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  width: 390px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(0, 0, 0, .07);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.nav-dropdown:hover .premium-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.premium-menu a {
  position: relative;
  display: block;
  padding: 14px 16px 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #16161d;
  transition: background .2s ease, transform .2s ease;
}

.premium-menu a::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: #e36206;
  opacity: 0;
  transition: opacity .2s ease;
}

.premium-menu a:hover,
.premium-menu a[aria-current="page"] {
  background: #fff8f3;
  transform: translateX(3px);
}

.premium-menu a:hover::before,
.premium-menu a[aria-current="page"]::before {
  opacity: 1;
}

.premium-menu a b {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.2;
}

.premium-menu a small {
  display: block;
  color: #6b6f7a;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.products-menu {
  width: 344px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  margin-right: -2px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: #e36206;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(227,98,6, .25);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #c95400;
  box-shadow: 0 20px 44px rgba(227,98,6, .33);
}

.site-navbar.scrolled .site-brand img {
  width: 96px;
}

.site-navbar.scrolled .site-brand b,
.site-navbar.scrolled .site-brand span,
.site-navbar.is-solid .site-brand b,
.site-navbar.is-solid .site-brand span {
  color: #15151b;
}

.site-navbar.scrolled .nav-link,
.site-navbar.scrolled .nav-drop-btn,
.site-navbar.is-solid .nav-link,
.site-navbar.is-solid .nav-drop-btn {
  color: #202028;
}

.site-navbar.scrolled .nav-link:hover,
.site-navbar.scrolled .nav-link.active,
.site-navbar.scrolled .nav-link[aria-current="page"],
.site-navbar.scrolled .nav-drop-btn.active,
.site-navbar.scrolled .nav-dropdown:hover .nav-drop-btn,
.site-navbar.is-solid .nav-link:hover,
.site-navbar.is-solid .nav-link.active,
.site-navbar.is-solid .nav-link[aria-current="page"],
.site-navbar.is-solid .nav-drop-btn.active,
.site-navbar.is-solid .nav-dropdown:hover .nav-drop-btn {
  color: #e36206;
}

.site-navbar.scrolled .nav-cta,
.site-navbar.is-solid .nav-cta {
  color: #fff;
}

.site-navbar.scrolled .nav-link::after,
.site-navbar.scrolled .nav-drop-btn::after,
.site-navbar.is-solid .nav-link::after,
.site-navbar.is-solid .nav-drop-btn::after {
  bottom: 18px;
}

.site-navbar.is-transparent .nav-link::after,
.site-navbar.is-transparent .nav-drop-btn::after {
  background: #e36206;
}

.site-navbar .nav-link,
.site-navbar .nav-drop-btn {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.site-navbar .nav-drop-btn span {
  transform: none !important;
}

.site-navbar .nav-drop-btn span:last-child {
  margin-left: 6px;
}

.site-navbar .nav-dropdown:hover .nav-drop-btn span {
  transform: none !important;
}

.mppt-cinematic-hero {
  overflow: hidden;
}

.mppt-hero-inner {
  padding-top: 84px;
}

@media (max-width: 980px) {
  body:not(.home-page) {
    padding-top: 74px;
  }

  .site-navbar {
    height: 74px;
  }

  .site-navbar-inner {
    width: min(100% - 10px, 1440px);
    grid-template-columns: auto auto;
    gap: 12px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(.985);
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
    z-index: 210;
  }

  .site-navbar.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .site-navbar.nav-open .site-nav .nav-link,
  .site-navbar.nav-open .site-nav .nav-drop-btn,
  .site-navbar.nav-open .site-nav .nav-cta {
    height: auto;
    width: 100%;
    justify-content: flex-start;
    padding: 13px 16px;
    border-radius: 14px;
  }

  .site-navbar.nav-open .site-nav .nav-link,
  .site-navbar.nav-open .site-nav .nav-drop-btn {
    color: #202028;
  }

  .site-navbar.nav-open .site-nav .nav-link:hover,
  .site-navbar.nav-open .site-nav .nav-drop-btn:hover,
  .site-navbar.nav-open .site-nav .nav-link.active,
  .site-navbar.nav-open .site-nav .nav-link[aria-current="page"],
  .site-navbar.nav-open .site-nav .nav-drop-btn.active,
  .site-navbar.nav-open .site-nav .nav-dropdown:hover .nav-drop-btn {
    color: #e36206;
  }

  .site-navbar.nav-open .site-nav .nav-link::after,
  .site-navbar.nav-open .site-nav .nav-drop-btn::after {
    display: none;
  }

  .site-navbar.nav-open .site-nav .nav-dropdown {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .site-navbar.nav-open .site-nav .nav-drop-btn {
    justify-content: space-between;
  }

  .site-navbar.nav-open .site-nav .nav-cta {
    margin-top: 4px;
    margin-right: 0;
  }

  .site-navbar.nav-open .site-nav .premium-menu {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    margin: 0;
    padding: 0 0 0;
    border: 0;
    border-radius: 18px;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    transform: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height .24s ease, opacity .24s ease, visibility .24s ease;
  }

  .site-navbar.nav-open .site-nav .nav-dropdown.open .premium-menu {
    max-height: 560px;
    padding-top: 4px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-navbar.nav-open .site-nav .premium-menu a {
    background: #f7f8fa;
    margin-top: 4px;
  }

  .site-nav-toggle {
    display: inline-flex;
  }

  .site-brand img {
    width: 92px;
  }

  .site-navbar.scrolled .site-brand img {
    width: 84px;
  }

  .mppt-hero-inner {
    padding-top: 74px;
  }
}

/* Homepage testimonial marquee full-bleed */
.testimonial-section {
  position: relative;
  padding: 88px 0 82px;
  background: #f7f8fa;
  overflow-x: hidden;
}

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

.testimonial-marquee-full {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  margin-top: 48px;
  padding: 10px 0 18px;
}

.testimonial-marquee-full::before,
.testimonial-marquee-full::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.testimonial-marquee-full::before {
  left: 0;
  background: linear-gradient(90deg, #f7f8fa 0%, rgba(247,248,250,0) 100%);
}

.testimonial-marquee-full::after {
  right: 0;
  background: linear-gradient(270deg, #f7f8fa 0%, rgba(247,248,250,0) 100%);
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 28px;
  width: max-content;
  animation: testimonialMarquee 48s linear infinite;
  will-change: transform;
}

.testimonial-marquee-full:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 390px;
  flex: 0 0 390px;
  min-height: 430px;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 14px 36px rgba(18,19,26,.055);
}

.testimonial-card .stars {
  color: #f59b00;
  letter-spacing: 3px;
  font-size: 18px;
  margin-bottom: 28px;
}

.testimonial-card > p {
  margin: 0;
  color: #5f6674;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 650;
}

.testimonial-card > small {
  display: block;
  margin-top: 18px;
  color: #8d95a3;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.client {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #eceef3;
  margin-top: 30px;
  padding-top: 26px;
}

.client b {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e36206;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.client span {
  display: grid;
  gap: 4px;
}

.client strong {
  color: #12131a;
  font-size: 17px;
  font-weight: 950;
}

.client small {
  color: #98a0af;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.testimonial-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 32px;
  color: #6d707a;
  font-size: 14px;
  font-weight: 800;
}

.testimonial-proof span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.testimonial-proof span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e36206;
  opacity: .7;
}

@keyframes testimonialMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1050px) {
  .testimonial-card {
    width: 340px;
    flex: 0 0 340px;
  }

  .testimonial-track {
    gap: 22px;
  }

  .testimonial-section .container {
    width: min(100% - 40px, 1180px);
  }
}

@media (max-width: 640px) {
  .testimonial-section {
    padding: 74px 0 72px;
  }

  .testimonial-card {
    width: 290px;
    flex: 0 0 290px;
    min-height: 390px;
    padding: 26px;
  }

  .testimonial-track {
    gap: 22px;
  }

  .testimonial-marquee-full::before,
  .testimonial-marquee-full::after {
    width: 40px;
  }

  .client {
    gap: 14px;
    margin-top: 24px;
    padding-top: 22px;
  }

  .client b {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    font-size: 16px;
  }

  .client strong {
    font-size: 16px;
  }

.testimonial-proof {
    margin-top: 26px;
    font-size: 13px;
  }
}

.testimonial-section {
  width: 100% !important;
  max-width: none !important;
  overflow: hidden !important;
  background: #f7f8fa !important;
}

.testimonial-marquee-viewport {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  overflow: hidden !important;
  margin-top: 54px !important;
  padding: 0 !important;
}

.testimonial-marquee-viewport::before,
.testimonial-marquee-viewport::after {
  display: none !important;
  content: none !important;
}

.testimonial-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 28px !important;
  width: max-content !important;
  min-width: max-content !important;
  animation: testimonialMarquee 70s linear infinite !important;
  will-change: transform !important;
}

.testimonial-card {
  flex: 0 0 390px !important;
  width: 390px !important;
  max-width: 390px !important;
}

@keyframes testimonialMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-marquee-viewport:hover .testimonial-track {
  animation-play-state: paused !important;
}

.testimonial-marquee,
.testimonial-marquee-full,
.testimonial-marquee-full::before,
.testimonial-marquee-full::after,
.testimonial-marquee::before,
.testimonial-marquee::after {
  display: none !important;
  content: none !important;
}

html,
body {
  overflow-x: hidden !important;
}

/* FINAL FIX — testimonial carousel movement */
.testimonial-marquee-viewport {
  overflow: hidden !important;
  width: 100% !important;
  max-width: none !important;
}

.testimonial-marquee-viewport .testimonial-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 28px !important;
  width: max-content !important;
  min-width: max-content !important;
  animation-name: mpptTestimonialLoop !important;
  animation-duration: 70s !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
  animation-play-state: running !important;
  will-change: transform !important;
}

.testimonial-marquee-viewport:hover .testimonial-track {
  animation-play-state: paused !important;
}

.testimonial-marquee-viewport .testimonial-card {
  flex: 0 0 390px !important;
  width: 390px !important;
  max-width: 390px !important;
}

@keyframes mpptTestimonialLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-50% - 14px), 0, 0);
  }
}

/* FINAL JS marquee override */
.testimonial-marquee-viewport .testimonial-track {
  animation: none !important;
  will-change: transform !important;
}

.testimonial-marquee-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
}

.testimonial-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  width: max-content;
  will-change: transform;
  animation: none !important;
}

.testimonial-card {
  flex: 0 0 390px;
  width: 390px;
}

html, body {
  overflow-x: hidden;
}

.testimonial-section {
  width: 100% !important;
  max-width: none !important;
  overflow: hidden !important;
  background: #f7f8fa !important;
}

.testimonial-marquee-viewport {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  overflow: hidden !important;
  margin-top: 54px !important;
  padding: 0 !important;
}

.testimonial-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 28px !important;
  width: max-content !important;
  animation: testimonialMarquee 70s linear infinite !important;
  will-change: transform !important;
}

.testimonial-marquee-viewport:hover .testimonial-track {
  animation-play-state: paused !important;
}

@keyframes testimonialMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-marquee,
.testimonial-marquee-full,
.testimonial-marquee-full::before,
.testimonial-marquee-full::after,
.testimonial-marquee::before,
.testimonial-marquee::after {
  display: none !important;
  content: none !important;
}

html,
body {
  overflow-x: hidden !important;
}

.testimonial-section {
  width: 100% !important;
  max-width: none !important;
  overflow: hidden !important;
  background: #f7f8fa !important;
}

.testimonial-marquee-viewport {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  overflow: hidden !important;
  margin-top: 54px !important;
  padding: 0 !important;
}

.testimonial-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 28px !important;
  width: max-content !important;
  animation: testimonialMarquee 70s linear infinite !important;
  will-change: transform !important;
}

.testimonial-marquee-viewport:hover .testimonial-track {
  animation-play-state: paused !important;
}

@keyframes testimonialMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-marquee,
.testimonial-marquee-full,
.testimonial-marquee-full::before,
.testimonial-marquee-full::after,
.testimonial-marquee::before,
.testimonial-marquee::after {
  display: none !important;
  content: none !important;
}

html,
body {
  overflow-x: hidden !important;
}

.testimonial-marquee-full::before,
.testimonial-marquee-full::after,
.testimonial-marquee::before,
.testimonial-marquee::after {
  width: 70px !important;
  max-width: 70px !important;
  min-width: 70px !important;
  height: 100% !important;
  top: 0 !important;
  pointer-events: none !important;
  z-index: 3 !important;
}

.testimonial-marquee-full::before,
.testimonial-marquee::before {
  left: 0 !important;
  right: auto !important;
  background: linear-gradient(90deg, #f7f8fa 0%, rgba(247,248,250,0) 100%) !important;
}

.testimonial-marquee-full::after,
.testimonial-marquee::after {
  right: 0 !important;
  left: auto !important;
  background: linear-gradient(270deg, #f7f8fa 0%, rgba(247,248,250,0) 100%) !important;
}

.testimonial-section {
  width: 100% !important;
  max-width: none !important;
  overflow: hidden !important;
  background: #f7f8fa !important;
}

.testimonial-marquee-viewport {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  overflow: hidden !important;
  margin-top: 54px !important;
  padding: 0 !important;
}

.testimonial-marquee-viewport::before,
.testimonial-marquee-viewport::after {
  display: none !important;
  content: none !important;
}

.testimonial-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 28px !important;
  width: max-content !important;
  min-width: max-content !important;
  animation: testimonialMarquee 45s linear infinite !important;
  will-change: transform !important;
}

.testimonial-card {
  flex: 0 0 390px !important;
  width: 390px !important;
  max-width: 390px !important;
}

@keyframes testimonialMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 14px)); }
}

.testimonial-marquee-viewport:hover .testimonial-track {
  animation-play-state: paused !important;
}

.testimonial-marquee,
.testimonial-marquee-full,
.testimonial-marquee-full::before,
.testimonial-marquee-full::after,
.testimonial-marquee::before,
.testimonial-marquee::after {
  display: none !important;
  content: none !important;
}

html,
body {
  overflow-x: hidden !important;
}

/* Final full-bleed breakout for homepage testimonial marquee */
.home-page .testimonial-section {
  position: relative !important;
  left: 50% !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 0 0 -50vw !important;
  padding: 88px 0 82px !important;
  overflow: hidden !important;
  background: #f7f8fa !important;
}

.home-page .testimonial-marquee-full {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: hidden !important;
  position: relative !important;
}

.testimonial-section {
  overflow: hidden !important;
}

.testimonial-marquee-full {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: hidden !important;
  position: relative !important;
}

.testimonial-track {
  display: flex !important;
  gap: 28px !important;
  width: max-content !important;
  animation: testimonialMarquee 48s linear infinite !important;
  will-change: transform !important;
}

.testimonial-track::before,
.testimonial-track::after {
  display: none !important;
}

.testimonial-marquee-full::before,
.testimonial-marquee-full::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  width: 90px !important;
  height: 100% !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

.testimonial-marquee-full::before {
  left: 0 !important;
  background: linear-gradient(90deg, #f7f8fa 0%, rgba(247,248,250,0) 100%) !important;
}

.testimonial-marquee-full::after {
  right: 0 !important;
  background: linear-gradient(270deg, #f7f8fa 0%, rgba(247,248,250,0) 100%) !important;
}

@keyframes testimonialMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

html,
body {
  overflow-x: hidden;
}

.testimonial-section {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 90px 0 !important;
  overflow: hidden !important;
  background: #f7f8fa !important;
}

.testimonial-head-wrap,
.testimonial-proof-wrap {
  width: min(1180px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
}

.testimonial-marquee-full {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: 50% !important;
  transform: translateX(-50%) !important;
  overflow: hidden !important;
  position: relative !important;
  margin-top: 54px !important;
  padding: 0 !important;
}

.testimonial-track {
  display: flex !important;
  gap: 28px !important;
  width: max-content !important;
  animation: testimonialMarquee 48s linear infinite !important;
  will-change: transform !important;
}

.testimonial-card {
  width: 390px !important;
  flex: 0 0 390px !important;
}

.testimonial-marquee-full::before,
.testimonial-marquee-full::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  width: 90px !important;
  height: 100% !important;
  z-index: 4 !important;
  pointer-events: none !important;
}

.testimonial-marquee-full::before {
  left: 0 !important;
  background: linear-gradient(90deg, #f7f8fa 0%, rgba(247,248,250,0) 100%) !important;
}

.testimonial-marquee-full::after {
  right: 0 !important;
  background: linear-gradient(270deg, #f7f8fa 0%, rgba(247,248,250,0) 100%) !important;
}

body.home-page {
  overflow-x: hidden;
}

@media (max-width: 640px) {
  .site-navbar-inner {
    width: min(100% - 8px, 1440px);
  }

  .site-brand {
    gap: 10px;
  }

  .site-brand img {
    width: 80px;
  }

  .site-brand b {
    font-size: 18px;
  }

  .site-brand span {
    font-size: 10px;
  }
}

@media (min-width: 1101px) {
  .home-page .why-minimal-section {
    padding: 110px 0 120px !important;
    background: #fff !important;
    overflow: hidden !important;
  }

  .home-page .why-minimal-head {
    text-align: center !important;
    max-width: 900px !important;
    margin: 0 auto !important;
  }

  .home-page .why-minimal-head span {
    display: block !important;
    color: #e36206 !important;
    font-size: 15px !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: .14em !important;
    margin-bottom: 16px !important;
  }

  .home-page .why-minimal-head span::after {
    content: "" !important;
    display: block !important;
    width: 52px !important;
    height: 2px !important;
    background: #e36206 !important;
    margin: 14px auto 0 !important;
  }

  .home-page .why-minimal-head h2 {
    margin: 0 !important;
    color: #111218 !important;
    font-size: clamp(46px, 5vw, 72px) !important;
    line-height: .98 !important;
    letter-spacing: -.06em !important;
    font-weight: 950 !important;
  }

  .home-page .why-minimal-head p {
    max-width: 760px !important;
    margin: 22px auto 0 !important;
    color: #667085 !important;
    font-size: 21px !important;
    line-height: 1.55 !important;
    font-weight: 650 !important;
  }

  .home-page .why-minimal-grid {
    width: 1168px !important;
    max-width: calc(100% - 64px) !important;
    margin: 72px auto 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, 360px) !important;
    gap: 44px !important;
    justify-content: center !important;
  }

  .home-page .why-minimal-item {
    width: 360px !important;
    max-width: 360px !important;
    min-width: 0 !important;
    overflow: visible !important;
    text-align: left !important;
  }

  .home-page .why-minimal-icon {
    width: 108px !important;
    height: 108px !important;
    border-radius: 50% !important;
    background: #fff !important;
    margin: 0 auto 26px !important;
    display: grid !important;
    place-items: center !important;
    color: #e36206 !important;
    box-shadow: 0 22px 60px rgba(18,19,26,.08) !important;
    border: 1px solid #f0f1f4 !important;
  }

  .home-page .why-minimal-icon svg {
    width: 44px !important;
    height: 44px !important;
    stroke: #e36206 !important;
    fill: none !important;
  }

  .home-page .why-minimal-image {
    width: 360px !important;
    height: 245px !important;
    border-radius: 58px 18px 58px 18px !important;
    overflow: hidden !important;
    background: #f4f5f7 !important;
    box-shadow: 0 24px 58px rgba(18,19,26,.08) !important;
    will-change: transform, box-shadow !important;
    transform: translateZ(0) !important;
    transition: box-shadow .5s ease, border-color .5s ease, transform .5s ease !important;
  }

  .home-page .why-minimal-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    will-change: transform !important;
    backface-visibility: hidden !important;
    transform: translateZ(0) scale(1) !important;
    transition: transform .85s cubic-bezier(.22, 1, .36, 1) !important;
  }

  .home-page .why-minimal-item:hover .why-minimal-image img {
    transform: translateZ(0) scale(1.02) !important;
  }

  .home-page .why-minimal-content {
    display: grid !important;
    grid-template-columns: auto 1px minmax(0, 1fr) !important;
    gap: 16px !important;
    margin-top: 30px !important;
    align-items: start !important;
  }

  .home-page .why-minimal-content strong {
    color: #e36206 !important;
    font-size: 46px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    letter-spacing: -.04em !important;
  }

  .home-page .why-minimal-content > span {
    width: 1px !important;
    min-height: 72px !important;
    background: #d9dde5 !important;
    display: block !important;
  }

  .home-page .why-minimal-content h3 {
    margin: 0 0 10px !important;
    color: #111218 !important;
    font-size: 24px !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
    letter-spacing: -.04em !important;
  }

  .home-page .why-minimal-content p {
    margin: 0 !important;
    max-width: 250px !important;
    color: #667085 !important;
    font-size: 15.5px !important;
    line-height: 1.6 !important;
    font-weight: 650 !important;
  }

  .home-page .why-minimal-content i {
    display: block !important;
    width: 52px !important;
    height: 3px !important;
    background: #e36206 !important;
    border-radius: 999px !important;
    margin-top: 20px !important;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .home-page .why-minimal-grid {
    width: min(764px, calc(100% - 40px)) !important;
    grid-template-columns: repeat(2, 360px) !important;
    gap: 50px 44px !important;
  }

  .home-page .why-minimal-item:nth-child(3) {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
  }
}

@media (max-width: 700px) {
  .home-page .why-minimal-grid {
    width: min(360px, calc(100% - 28px)) !important;
    grid-template-columns: 1fr !important;
    gap: 54px !important;
  }

  .home-page .why-minimal-item,
  .home-page .why-minimal-image {
    width: 100% !important;
    max-width: 360px !important;
  }

  .home-page .why-minimal-image {
    height: 235px !important;
  }

  .home-page .why-minimal-head h2 {
    font-size: 40px !important;
  }
}

@media (min-width: 1101px) {
  .home-page .why-minimal-section .why-minimal-grid {
    transform: scale(0.88) !important;
    transform-origin: top center !important;
    margin-top: 40px !important;
    margin-bottom: -48px !important;
  }
}

@media (min-width: 1101px) {
  .home-page .why-minimal-section {
    position: relative !important;
    padding: 130px 0 120px !important;
    background:
      radial-gradient(circle at top left, rgba(255,106,0, .035), transparent 38%),
      radial-gradient(circle at top right, rgba(255,106,0, .03), transparent 42%),
      linear-gradient(180deg, #ffffff, #fcfcfd 55%, #ffffff) !important;
    overflow: hidden !important;
  }

  .home-page .why-minimal-section::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(circle at 50% 4%, rgba(255,106,0, .04), transparent 34%) !important;
    pointer-events: none !important;
  }

  .home-page .why-minimal-head {
    width: min(100% - 64px, 960px) !important;
    max-width: 960px !important;
    margin: 0 auto !important;
  }

  .home-page .why-minimal-head span {
    font-size: 14px !important;
    margin-bottom: 12px !important;
    letter-spacing: .13em !important;
  }

  .home-page .why-minimal-head h2 {
    font-size: clamp(34px, 3.8vw, 52px) !important;
    line-height: .94 !important;
  }

  .home-page .why-minimal-head p {
    max-width: 700px !important;
    font-size: 18px !important;
    line-height: 1.66 !important;
  }

  .home-page .why-minimal-grid {
    margin-top: 80px !important;
  }

  .home-page .why-minimal-icon {
    background: rgba(255, 255, 255, .985) !important;
    border: 1px solid rgba(240, 241, 244, .98) !important;
    box-shadow: 0 18px 48px rgba(18, 19, 26, .07) !important;
  }

  .home-page .why-minimal-image {
    border: 1px solid rgba(255, 255, 255, .92) !important;
    box-shadow: 0 20px 52px rgba(18, 19, 26, .075) !important;
    transform: translateZ(0) !important;
    transition:
      box-shadow .8s cubic-bezier(.22, 1, .36, 1),
      border-color .8s cubic-bezier(.22, 1, .36, 1),
      transform .8s cubic-bezier(.22, 1, .36, 1) !important;
  }

  .home-page .why-minimal-image img {
    transform: translateZ(0) scale(1) !important;
    backface-visibility: hidden !important;
    transition:
      transform .95s cubic-bezier(.22, 1, .36, 1),
      filter .95s cubic-bezier(.22, 1, .36, 1) !important;
  }

  .home-page .why-minimal-item:hover .why-minimal-image {
    box-shadow: 0 30px 72px rgba(18, 19, 26, .10) !important;
    border-color: rgba(255, 255, 255, .98) !important;
    transform: translateY(-1px) !important;
  }

  .home-page .why-minimal-item:hover .why-minimal-image img {
    transform: translateZ(0) scale(1.035) !important;
    filter: saturate(1.02) contrast(1.01) !important;
  }

  .home-page .why-minimal-content strong {
    opacity: .94 !important;
    -webkit-text-stroke: 1px rgba(227,98,6, .7) !important;
  }

  .home-page .why-minimal-content h3 {
    font-weight: 980 !important;
  }

  .home-page .why-minimal-content p {
    color: #6b7280 !important;
    line-height: 1.7 !important;
  }
}

/* Homepage testimonial marquee full-bleed */
.testimonial-section {
  position: relative;
  padding: 88px 0 82px;
  background: #f7f8fa;
  overflow-x: hidden;
}

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

.testimonial-marquee-full {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  margin-top: 48px;
  padding: 10px 0 18px;
}

.testimonial-marquee-full::before,
.testimonial-marquee-full::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.testimonial-marquee-full::before {
  left: 0;
  background: linear-gradient(90deg, #f7f8fa 0%, rgba(247,248,250,0) 100%);
}

.testimonial-marquee-full::after {
  right: 0;
  background: linear-gradient(270deg, #f7f8fa 0%, rgba(247,248,250,0) 100%);
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 28px;
  width: max-content;
  animation: testimonialMarquee 48s linear infinite;
  will-change: transform;
}

.testimonial-marquee-full:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 390px;
  flex: 0 0 390px;
  min-height: 430px;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 14px 36px rgba(18,19,26,.055);
}

.testimonial-card .stars {
  color: #f59b00;
  letter-spacing: 3px;
  font-size: 18px;
  margin-bottom: 28px;
}

.testimonial-card > p {
  margin: 0;
  color: #5f6674;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 650;
}

.testimonial-card > small {
  display: block;
  margin-top: 18px;
  color: #8d95a3;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.client {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #eceef3;
  margin-top: 30px;
  padding-top: 26px;
}

.client b {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e36206;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.client span {
  display: grid;
  gap: 4px;
}

.client strong {
  color: #12131a;
  font-size: 17px;
  font-weight: 950;
}

.client small {
  color: #98a0af;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.testimonial-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 32px;
  color: #6d707a;
  font-size: 14px;
  font-weight: 800;
}

.testimonial-proof span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.testimonial-proof span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e36206;
  opacity: .7;
}

@keyframes testimonialMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1050px) {
  .testimonial-card {
    width: 340px;
    flex: 0 0 340px;
  }

  .testimonial-track {
    gap: 22px;
  }

  .testimonial-section .container {
    width: min(100% - 40px, 1180px);
  }
}

@media (max-width: 640px) {
  .testimonial-section {
    padding: 74px 0 72px;
  }

  .testimonial-card {
    width: 290px;
    flex: 0 0 290px;
    min-height: 390px;
    padding: 26px;
  }

  .testimonial-track {
    gap: 22px;
  }

  .testimonial-marquee-full::before,
  .testimonial-marquee-full::after {
    width: 40px;
  }

  .client {
    gap: 14px;
    margin-top: 24px;
    padding-top: 22px;
  }

  .client b {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    font-size: 16px;
  }

  .client strong {
    font-size: 16px;
  }

  .testimonial-proof {
    margin-top: 26px;
    font-size: 13px;
  }
}

.testimonial-section {
  width: 100% !important;
  max-width: none !important;
  overflow: hidden !important;
  background: #f7f8fa !important;
}

.testimonial-marquee-viewport {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  overflow: hidden !important;
  margin-top: 54px !important;
  padding: 0 !important;
}

.testimonial-marquee-viewport::before,
.testimonial-marquee-viewport::after {
  display: none !important;
  content: none !important;
}

.testimonial-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 28px !important;
  width: max-content !important;
  min-width: max-content !important;
  animation: testimonialMarquee 45s linear infinite !important;
  will-change: transform !important;
}

.testimonial-card {
  flex: 0 0 390px !important;
  width: 390px !important;
  max-width: 390px !important;
}

@keyframes testimonialMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 14px)); }
}

.testimonial-marquee-viewport:hover .testimonial-track {
  animation-play-state: paused !important;
}

.testimonial-marquee,
.testimonial-marquee-full,
.testimonial-marquee-full::before,
.testimonial-marquee-full::after,
.testimonial-marquee::before,
.testimonial-marquee::after {
  display: none !important;
  content: none !important;
}

html,
body {
  overflow-x: hidden !important;
}


.testimonial-section {
  width: 100% !important;
  max-width: none !important;
  overflow: hidden !important;
  background: #f7f8fa !important;
}

.testimonial-marquee-viewport {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  overflow: hidden !important;
  margin-top: 54px !important;
  padding: 0 !important;
}

.testimonial-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 28px !important;
  width: max-content !important;
  animation: testimonialMarquee 70s linear infinite !important;
  will-change: transform !important;
}

.testimonial-marquee-viewport:hover .testimonial-track {
  animation-play-state: paused !important;
}

@keyframes testimonialMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-marquee,
.testimonial-marquee-full,
.testimonial-marquee-full::before,
.testimonial-marquee-full::after,
.testimonial-marquee::before,
.testimonial-marquee::after {
  display: none !important;
  content: none !important;
}

html,
body {
  overflow-x: hidden !important;
}


/* FINAL FIX — testimonial carousel movement */
.testimonial-marquee-viewport {
  overflow: hidden !important;
  width: 100% !important;
  max-width: none !important;
}

.testimonial-marquee-viewport .testimonial-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 28px !important;
  width: max-content !important;
  min-width: max-content !important;
  animation-name: mpptTestimonialLoop !important;
  animation-duration: 70s !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
  animation-play-state: running !important;
  will-change: transform !important;
}

.testimonial-marquee-viewport:hover .testimonial-track {
  animation-play-state: paused !important;
}

.testimonial-marquee-viewport .testimonial-card {
  flex: 0 0 390px !important;
  width: 390px !important;
  max-width: 390px !important;
}

@keyframes mpptTestimonialLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-50% - 14px), 0, 0);
  }
}


/* FINAL JS marquee override */
.testimonial-marquee-viewport .testimonial-track {
  animation: none !important;
  will-change: transform !important;
}

/* Services page testimonial marquee */
body.services-page .design-support-testimonials {
  padding: 108px 0 124px;
  background: #f7f8fa;
  overflow: hidden;
}

body.services-page .design-support-testimonials .testimonial-head-wrap {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

body.services-page .design-support-testimonials .simple-center-head {
  max-width: 840px;
  margin: 0 auto;
}

body.services-page .design-support-testimonials .simple-center-head span {
  letter-spacing: 0.18em;
}

body.services-page .design-support-testimonials .testimonial-marquee-viewport {
  margin-top: 42px !important;
}

body.services-page .design-support-testimonials .testimonial-track {
  animation: servicesTestimonialLoop 62s linear infinite !important;
  gap: 28px !important;
  will-change: transform !important;
}

body.services-page .design-support-testimonials .testimonial-card {
  flex: 0 0 388px !important;
  width: 388px !important;
  max-width: 388px !important;
}

body.services-page .design-support-testimonials .testimonial-marquee-viewport:hover .testimonial-track,
body.services-page .design-support-testimonials .testimonial-marquee-viewport:focus-within .testimonial-track {
  animation-play-state: paused !important;
}

@keyframes servicesTestimonialLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 14px));
  }
}

@media (max-width: 1024px) {
  body.services-page .design-support-testimonials {
    padding: 96px 0 112px;
  }

  body.services-page .design-support-testimonials .testimonial-head-wrap {
    padding: 0 20px;
  }

  body.services-page .design-support-testimonials .testimonial-track {
    gap: 24px !important;
  }

  body.services-page .design-support-testimonials .testimonial-card {
    flex-basis: 340px !important;
    width: 340px !important;
    max-width: 340px !important;
  }
}

@media (max-width: 700px) {
  body.services-page .design-support-testimonials {
    padding: 84px 0 100px;
  }

  body.services-page .design-support-testimonials .testimonial-head-wrap {
    padding: 0 16px;
  }

  body.services-page .design-support-testimonials .testimonial-marquee-viewport {
    margin-top: 34px !important;
  }

  body.services-page .design-support-testimonials .testimonial-track {
    gap: 18px !important;
  }

  body.services-page .design-support-testimonials .testimonial-card {
    flex-basis: min(84vw, 300px) !important;
    width: min(84vw, 300px) !important;
    max-width: min(84vw, 300px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.services-page .design-support-testimonials .testimonial-track {
    animation: none !important;
    transform: none !important;
  }
}


/* Mobile App Section refinement */
.clean-app-section {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr) !important;
  gap: clamp(48px, 6vw, 90px) !important;
  align-items: center !important;
  padding: 110px clamp(24px, 4vw, 56px) !important;
  box-sizing: border-box !important;
}

.clean-app-copy {
  max-width: 560px !important;
  justify-self: start !important;
}

.clean-app-copy h2 {
  max-width: 560px !important;
  font-size: clamp(44px, 4.8vw, 68px) !important;
  line-height: .96 !important;
}

.clean-app-copy p {
  max-width: 520px !important;
}

.clean-app-features {
  max-width: 560px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin-top: 34px !important;
}

.clean-app-features div {
  min-height: 118px !important;
  padding: 22px !important;
}

.clean-red-btn {
  margin-top: 34px !important;
}

.clean-phone-wrap {
  justify-self: center !important;
  width: min(360px, 100%) !important;
  position: relative !important;
}

.clean-phone-wrap::before {
  content: "" !important;
  position: absolute !important;
  inset: 8% -22% !important;
  background: radial-gradient(circle, rgba(227,98,6,.09), transparent 68%) !important;
  filter: blur(12px) !important;
  z-index: 0 !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
}

.clean-phone {
  position: relative !important;
  z-index: 1 !important;
  width: 340px !important;
  max-width: 100% !important;
  min-height: 610px !important;
  border-radius: 42px !important;
  padding: 28px 22px !important;
  animation: appPhoneFloat 6s ease-in-out infinite !important;
}

.phone-header {
  border-radius: 18px !important;
  padding: 18px !important;
}

.phone-box {
  padding: 20px !important;
  border-radius: 18px !important;
}

.phone-grid {
  gap: 12px !important;
}

.phone-grid span {
  min-height: 56px !important;
  border-radius: 14px !important;
}

@keyframes appPhoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .clean-app-section {
    grid-template-columns: 1fr !important;
    padding: 92px clamp(18px, 4vw, 28px) !important;
  }

  .clean-app-copy {
    max-width: 560px !important;
    margin: 0 auto !important;
    text-align: center;
  }

  .clean-app-copy h2,
  .clean-app-copy p,
  .clean-app-features {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .clean-red-btn {
    display: inline-flex;
  }

  .clean-phone-wrap {
    width: min(330px, 100%) !important;
    margin: 18px auto 0 !important;
  }

  .clean-phone {
    width: min(330px, 100%) !important;
    min-height: 560px !important;
  }
}

@media (max-width: 640px) {
  .clean-app-features {
    grid-template-columns: 1fr !important;
  }

  .clean-phone-wrap {
    width: min(300px, 100%) !important;
  }

  .clean-phone {
    width: min(300px, 100%) !important;
    min-height: 540px !important;
  }

  .clean-app-features div {
    min-height: 110px !important;
  }
}

/* Homepage Mobile App premium rebuild */
.home-page .clean-app-section {
  position: relative !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-columns: minmax(420px, 0.92fr) minmax(320px, 0.78fr) !important;
  gap: clamp(40px, 4.5vw, 76px) !important;
  align-items: center !important;
  padding: 88px clamp(18px, 2.2vw, 28px) 94px !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(227,98,6, .06), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(227,98,6, .03), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfd 52%, #ffffff 100%) !important;
  box-sizing: border-box !important;
}

.home-page .clean-app-section::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 300px !important;
  height: 300px !important;
  background: radial-gradient(circle, rgba(227,98,6, .045), transparent 68%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.home-page .clean-app-section::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 12px !important;
  width: 140px !important;
  height: 110px !important;
  opacity: .16 !important;
  background-image: radial-gradient(rgba(227,98,6, .28) 1.3px, transparent 1.3px) !important;
  background-size: 11px 11px !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.home-page .clean-app-copy {
  max-width: 640px !important;
  justify-self: start !important;
  position: relative !important;
  z-index: 2 !important;
}

.home-page .clean-app-copy > span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #e36206 !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
  letter-spacing: .13em !important;
  margin-bottom: 14px !important;
}

.home-page .clean-app-copy > span::before {
  content: "" !important;
  width: 28px !important;
  height: 2px !important;
  background: #e36206 !important;
  border-radius: 999px !important;
}

.home-page .clean-app-copy h2 {
  max-width: 640px !important;
  margin: 0 !important;
  color: #111218 !important;
  font-size: clamp(40px, 4vw, 58px) !important;
  line-height: .98 !important;
  letter-spacing: -.072em !important;
  font-weight: 950 !important;
}

.home-page .clean-app-copy h2 .app-red-word {
  color: #e36206 !important;
}

.home-page .clean-app-copy > p {
  max-width: 560px !important;
  margin: 18px 0 0 !important;
  color: #5f6675 !important;
  font-size: clamp(14px, 1.05vw, 16px) !important;
  line-height: 1.6 !important;
  font-weight: 700 !important;
}

.home-page .clean-app-features {
  max-width: 680px !important;
  margin-top: 24px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.home-page .clean-app-features div {
  display: grid !important;
  grid-template-columns: 46px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: flex-start !important;
  min-height: 108px !important;
  padding: 16px 16px 15px !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, .94) !important;
  border: 1px solid #e7eaf0 !important;
  box-shadow: 0 10px 22px rgba(18, 19, 26, .04) !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}

.home-page .clean-app-features div:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(227,98,6, .2) !important;
  box-shadow: 0 14px 28px rgba(18, 19, 26, .06) !important;
}

.home-page .app-feature-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 13px !important;
  display: grid !important;
  place-items: center !important;
  background: linear-gradient(180deg, #fff7f1, #fffbf8) !important;
  color: #e36206 !important;
  border: 1px solid #ffe7d6 !important;
  flex: 0 0 auto !important;
}

.home-page .app-feature-icon svg {
  width: 20px !important;
  height: 20px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.home-page .clean-app-features b {
  display: block !important;
  color: #111218 !important;
  font-size: 14px !important;
  line-height: 1.18 !important;
  font-weight: 950 !important;
  margin-bottom: 5px !important;
}

.home-page .clean-app-features p {
  margin: 0 !important;
  color: #667085 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  font-weight: 750 !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

.home-page .clean-app-features > div > div {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.home-page .clean-app-features > div > div > * {
  min-width: 0 !important;
}

.home-page .clean-app-copy .clean-red-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  min-height: 54px !important;
  min-width: 220px !important;
  margin-top: 24px !important;
  padding: 0 24px !important;
  border-radius: 11px !important;
  background: #e36206 !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 950 !important;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(227,98,6, .18) !important;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease !important;
}

.home-page .clean-app-copy .clean-red-btn:hover {
  transform: translateY(-3px) !important;
  background: #c95400 !important;
  box-shadow: 0 20px 40px rgba(227,98,6, .24) !important;
}

.home-page .clean-phone-wrap {
  position: relative !important;
  justify-self: center !important;
  width: min(400px, 100%) !important;
  min-height: 620px !important;
  display: grid !important;
  place-items: center !important;
  z-index: 2 !important;
}

.home-page .clean-phone-wrap::before {
  content: "" !important;
  position: absolute !important;
  width: 480px !important;
  height: 480px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(227,98,6, .095), rgba(227,98,6, .03) 42%, transparent 70%) !important;
  filter: blur(2px) !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.home-page .clean-phone-wrap::after {
  content: "" !important;
  position: absolute !important;
  width: 520px !important;
  height: 520px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(227,98,6, .08) !important;
  box-shadow:
    inset 0 0 0 36px rgba(227,98,6, .02),
    inset 0 0 0 72px rgba(227,98,6, .014) !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.home-page .app-visual-ring {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  pointer-events: none !important;
}

.home-page .app-ring-a {
  width: 480px !important;
  height: 480px !important;
  border: 1px solid rgba(227,98,6, .06) !important;
  z-index: 0 !important;
}

.home-page .app-ring-b {
  width: 420px !important;
  height: 420px !important;
  border: 1px solid rgba(227,98,6, .045) !important;
  z-index: 0 !important;
}

.home-page .phone-platform {
  position: absolute !important;
  left: 50% !important;
  bottom: 30px !important;
  width: 340px !important;
  height: 48px !important;
  transform: translateX(-50%) !important;
  border-radius: 50% !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(231, 234, 240, .72)) !important;
  box-shadow: 0 18px 34px rgba(18, 19, 26, .10) !important;
  z-index: 1 !important;
}

.home-page .clean-phone {
  position: relative !important;
  z-index: 2 !important;
  width: 300px !important;
  min-height: 590px !important;
  border-radius: 42px !important;
  padding: 28px 22px 22px !important;
  background: #fff !important;
  border: 10px solid #111218 !important;
  box-shadow:
    20px 22px 54px rgba(18, 19, 26, .18),
    6px 0 0 rgba(0, 0, 0, .06) !important;
  transform: perspective(1100px) rotateY(-7deg) rotateX(1deg) !important;
  transform-origin: center !important;
  animation: appPhoneFloat 6s ease-in-out infinite !important;
}

.home-page .phone-notch {
  width: 72px !important;
  height: 6px !important;
  margin: 0 auto 20px !important;
  border-radius: 999px !important;
  background: #111218 !important;
}

.home-page .phone-header {
  min-height: 54px !important;
  display: flex !important;
  align-items: center !important;
  border-radius: 16px !important;
  padding: 0 14px !important;
  background: #111218 !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  box-shadow: 0 8px 20px rgba(18, 19, 26, .10) !important;
}

.home-page .phone-header span {
  color: #ffd6b8 !important;
  font-size: 10px !important;
  margin-left: 4px !important;
}

.home-page .phone-app-overview {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 72px !important;
  gap: 10px !important;
  align-items: center !important;
  margin-top: 14px !important;
  padding: 14px !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, #fffaf7, #fff) !important;
  border: 1px solid #ffe7d6 !important;
  box-shadow: 0 8px 18px rgba(18, 19, 26, .07) !important;
}

.home-page .phone-app-copy b {
  display: block !important;
  color: #111218 !important;
  font-size: 16px !important;
  line-height: 1.12 !important;
  font-weight: 950 !important;
}

.home-page .phone-app-copy small {
  display: block !important;
  margin-top: 7px !important;
  color: #667085 !important;
  font-size: 11px !important;
  line-height: 1.4 !important;
  font-weight: 750 !important;
}

.home-page .phone-app-chart {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 5px !important;
  align-items: end !important;
  height: 44px !important;
}

.home-page .phone-app-chart span {
  display: block !important;
  border-radius: 9px 9px 4px 4px !important;
  background: linear-gradient(180deg, #ffa96b, #e36206) !important;
  box-shadow: 0 7px 14px rgba(227,98,6, .16) !important;
}

.home-page .phone-app-chart span:nth-child(1) { height: 18px !important; }
.home-page .phone-app-chart span:nth-child(2) { height: 30px !important; }
.home-page .phone-app-chart span:nth-child(3) { height: 22px !important; }
.home-page .phone-app-chart span:nth-child(4) { height: 38px !important; }

.home-page .phone-box {
  position: relative !important;
  margin-top: 14px !important;
  padding: 18px 18px 18px 54px !important;
  border-radius: 16px !important;
  background: #fffaf7 !important;
  border: 1px solid #ffe1cb !important;
}

.home-page .phone-box::before {
  content: "" !important;
  position: absolute !important;
  left: 18px !important;
  top: 20px !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 8px !important;
  background: #fff !important;
  border: 1px solid #ffe5d2 !important;
  box-shadow: inset 0 0 0 5px #fff7f1 !important;
}

.home-page .phone-box b {
  display: block !important;
  color: #111218 !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
}

.home-page .phone-box small {
  display: block !important;
  margin-top: 7px !important;
  color: #667085 !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
  font-weight: 750 !important;
}

.home-page .phone-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-top: 16px !important;
}

.home-page .phone-grid span {
  min-height: 52px !important;
  border-radius: 13px !important;
  display: grid !important;
  place-items: center !important;
  background: #111218 !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  box-shadow: 0 8px 18px rgba(18, 19, 26, .10) !important;
}

.home-page .phone-bottom-nav {
  margin-top: 20px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 6px !important;
  color: #98a0af !important;
  font-size: 10px !important;
  font-weight: 850 !important;
  text-align: center !important;
}

.home-page .phone-bottom-nav span.active {
  color: #e36206 !important;
}

@keyframes appPhoneFloat {
  0%, 100% {
    transform: perspective(1100px) rotateY(-7deg) rotateX(1deg) translateY(0);
  }
  50% {
    transform: perspective(1100px) rotateY(-7deg) rotateX(1deg) translateY(-8px);
  }
}

@media (max-width: 1100px) {
  .home-page .clean-app-section {
    grid-template-columns: 1fr !important;
    gap: 56px !important;
    text-align: center !important;
    padding: 82px clamp(18px, 4vw, 38px) 88px !important;
  }

  .home-page .clean-app-copy {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
  }

  .home-page .clean-app-copy h2,
  .home-page .clean-app-copy > p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-page .clean-app-features {
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  }

  .home-page .clean-app-features div {
    text-align: left !important;
    min-width: 0 !important;
  }

  .home-page .clean-phone-wrap {
    min-height: 600px !important;
    width: min(420px, 100%) !important;
    margin: 0 auto !important;
  }

  .home-page .clean-phone {
    width: min(340px, 100%) !important;
  }
}

@media (max-width: 700px) {
  .home-page .clean-app-section {
    padding: 64px 16px 70px !important;
  }

  .home-page .clean-app-copy h2 {
    font-size: clamp(34px, 10vw, 44px) !important;
    letter-spacing: -.055em !important;
  }

  .home-page .clean-app-copy > p {
    font-size: 15px !important;
  }

  .home-page .clean-app-features {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .home-page .clean-app-features div {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 12px !important;
    text-align: left !important;
    padding: 15px !important;
    min-height: auto !important;
  }

  .home-page .clean-app-features b {
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  .home-page .clean-app-features p {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .home-page .app-feature-icon {
    width: 42px !important;
    height: 42px !important;
  }

  .home-page .clean-phone-wrap {
    min-height: 520px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .home-page .clean-phone-wrap::before {
    width: 320px !important;
    height: 320px !important;
  }

  .home-page .clean-phone-wrap::after {
    width: 360px !important;
    height: 360px !important;
  }

  .home-page .phone-platform {
    width: min(300px, calc(100vw - 28px)) !important;
    bottom: 22px !important;
  }

  .home-page .clean-phone {
    width: min(320px, calc(100vw - 38px)) !important;
    min-height: 500px !important;
    border-width: 8px !important;
    padding: 24px 16px 18px !important;
    transform: none !important;
    animation: appPhoneFloatMobile 6s ease-in-out infinite !important;
  }

  .home-page .phone-header {
    font-size: 12px !important;
  }

  .home-page .phone-box b {
    font-size: 15px !important;
  }

  .home-page .phone-grid span {
    min-height: 48px !important;
    font-size: 11px !important;
  }
}

@keyframes appPhoneFloatMobile {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}


/* Global Presence Section */
.global-presence-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background:
    radial-gradient(circle at 50% 0%, rgba(227,98,6, .04), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
}

.global-presence-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(227,98,6, .03), transparent 40%);
}

.global-presence-container {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.global-presence-copy {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.global-presence-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e36206;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.global-presence-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: #e36206;
}

.global-presence-title {
  margin: 16px auto 0;
  max-width: 760px;
  color: #111218;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: .98;
  font-weight: 950;
  letter-spacing: -.06em;
}

.global-presence-title .gp-accent {
  color: #e36206;
}

.global-presence-text {
  max-width: 780px;
  margin: 18px auto 0;
  color: #606674;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  font-weight: 650;
}

.global-presence-visual {
  margin: 42px auto 0;
  max-width: 1180px;
  animation: globalPresenceRise .85s ease-out both;
}

.global-presence-map {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(18, 19, 26, .08);
}

@keyframes globalPresenceRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .global-presence-section {
    padding: 72px 0 82px;
  }

  .global-presence-container {
    width: min(100% - 40px, 1180px);
  }

  .global-presence-title {
    max-width: 680px;
    font-size: clamp(28px, 5vw, 46px);
  }

  .global-presence-text {
    max-width: 720px;
  }

  .global-presence-visual {
    margin-top: 34px;
  }

  .global-presence-map {
    border-radius: 24px;
  }
}

@media (max-width: 700px) {
  .global-presence-section {
    padding: 56px 0 64px;
  }

  .global-presence-container {
    width: min(100% - 28px, 1180px);
  }

  .global-presence-eyebrow {
    font-size: 11px;
    letter-spacing: .14em;
  }

  .global-presence-title {
    font-size: clamp(26px, 8vw, 38px);
  }

  .global-presence-text {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.65;
  }

  .global-presence-visual {
    margin-top: 28px;
  }

  .global-presence-map {
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(18, 19, 26, .08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-presence-visual {
    animation: none;
  }
}

/* One Stop Shop image section */
.one-stop-section {
  position: relative;
  padding: 72px 0 82px;
  background: linear-gradient(180deg, #fff, #fcfcfd);
}

.one-stop-container {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
}

.one-stop-visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 44px rgba(18, 19, 26, .08);
  border: 1px solid rgba(17, 24, 39, .06);
  animation: oneStopRise .8s ease-out both;
  -webkit-mask-image: radial-gradient(circle at center, #000 68%, rgba(0, 0, 0, .94) 80%, rgba(0, 0, 0, .62) 90%, transparent 100%);
  mask-image: radial-gradient(circle at center, #000 68%, rgba(0, 0, 0, .94) 80%, rgba(0, 0, 0, .62) 90%, transparent 100%);
}

.one-stop-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, .98) 0, rgba(255, 255, 255, .86) 14%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at top right, rgba(255, 255, 255, .98) 0, rgba(255, 255, 255, .86) 14%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, .94) 0, rgba(255, 255, 255, .76) 14%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, .94) 0, rgba(255, 255, 255, .76) 14%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(90deg, rgba(255, 255, 255, .92) 0, rgba(255, 255, 255, 0) 8%, rgba(255, 255, 255, 0) 92%, rgba(255, 255, 255, .92) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .90) 0, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, .90) 100%);
  opacity: .42;
}

.one-stop-image {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes oneStopRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .one-stop-section {
    padding: 56px 0 64px;
  }

  .one-stop-container {
    width: min(100% - 40px, 1480px);
  }

  .one-stop-visual {
    border-radius: 28px;
  }

  .one-stop-visual::after {
    opacity: .32;
  }
}

@media (max-width: 700px) {
  .one-stop-section {
    padding: 42px 0 50px;
  }

  .one-stop-container {
    width: min(100% - 28px, 1480px);
  }

  .one-stop-visual {
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(18, 19, 26, .07);
  }

  .one-stop-visual::after {
    opacity: .24;
  }
}

@media (prefers-reduced-motion: reduce) {
  .one-stop-visual {
    animation: none;
  }
}

/* Homepage full-bleed layout tuning */
body.home-page {
  overflow-x: clip;
}

body.home-page main > section:not(.home-clean-sections):not(.clean-final-cta) {
  width: 100%;
  max-width: none;
}

body.home-page .global-presence-container,
body.home-page .one-stop-container,
body.home-page .complete-process-section > .container,
body.home-page .why-minimal-head,
body.home-page .why-minimal-grid,
body.home-page .offer-group,
body.home-page .simple-center-head,
body.home-page .simple-process-grid,
body.home-page .simple-process-action,
body.home-page .testimonial-head-wrap,
body.home-page .testimonial-marquee-viewport {
  width: min(1700px, calc(100% - 32px));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

body.home-page .global-presence-section,
body.home-page .one-stop-section,
body.home-page .complete-process-section,
body.home-page .clean-app-section,
body.home-page .simple-why-section,
body.home-page .simple-offer-section,
body.home-page .simple-process-section,
body.home-page .testimonial-section {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

body.home-page .clean-app-section {
  max-width: 1650px;
  width: calc(100% - 32px);
  padding-left: clamp(24px, 4vw, 72px);
  padding-right: clamp(24px, 4vw, 72px);
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: clamp(36px, 5vw, 84px);
}

body.home-page .global-presence-visual {
  width: 100%;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}

body.home-page .global-presence-map {
  width: 100%;
  max-width: 1700px;
}

body.home-page .one-stop-visual {
  width: 100%;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}

body.home-page .one-stop-image {
  width: 100%;
  max-width: 1700px;
}

body.home-page .complete-process-section .process-grid,
body.home-page .complete-process-section .complete-process-trust {
  width: 100%;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}

body.home-page .complete-process-section .process-card {
  min-width: 0;
}

body.home-page .complete-process-section .process-media {
  max-width: 100%;
}

body.home-page .testimonial-marquee-viewport {
  width: min(100%, 1700px);
}

body.home-page .testimonial-track {
  padding-left: 2px;
  padding-right: 2px;
}

@media (max-width: 1100px) {
  body.home-page .global-presence-container,
  body.home-page .one-stop-container,
  body.home-page .complete-process-section > .container,
  body.home-page .why-minimal-head,
  body.home-page .why-minimal-grid,
  body.home-page .offer-group,
  body.home-page .simple-center-head,
  body.home-page .simple-process-grid,
  body.home-page .simple-process-action,
  body.home-page .testimonial-head-wrap,
  body.home-page .testimonial-marquee-viewport {
    width: min(100% - 40px, 1700px);
  }

  body.home-page .clean-app-section {
    width: calc(100% - 40px);
    padding-left: clamp(20px, 3.5vw, 48px);
    padding-right: clamp(20px, 3.5vw, 48px);
  }
}

@media (max-width: 700px) {
  body.home-page .global-presence-container,
  body.home-page .one-stop-container,
  body.home-page .complete-process-section > .container,
  body.home-page .why-minimal-head,
  body.home-page .why-minimal-grid,
  body.home-page .offer-group,
  body.home-page .simple-center-head,
  body.home-page .simple-process-grid,
  body.home-page .simple-process-action,
  body.home-page .testimonial-head-wrap,
  body.home-page .testimonial-marquee-viewport {
    width: min(100% - 28px, 1700px);
  }

  body.home-page .clean-app-section {
    width: calc(100% - 28px);
    padding-left: 16px;
    padding-right: 16px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Complete Process homepage section */
.complete-process-section {
  padding: 100px 0 92px;
  background:
    radial-gradient(circle at top, rgba(227,98,6, .05), transparent 36%),
    linear-gradient(180deg, #fff, #fffbf8);
}

.complete-process-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.complete-process-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #e36206;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.complete-process-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.07em;
  font-weight: 950;
}

.complete-process-head h2 span {
  color: #e36206;
}

.complete-process-head p {
  max-width: 760px;
  margin: 20px auto 0;
  color: #667085;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 650;
}

.complete-process-stage {
  position: relative;
  height: 100px;
  margin: 10px auto 0;
  max-width: 1140px;
}

.complete-process-connector {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 8px;
  height: 84px;
  border-top: 2px dotted rgba(227,98,6, .28);
  border-radius: 50% / 100% 100% 0 0;
}

.complete-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.complete-process-card {
  position: relative;
  padding: 78px 26px 28px;
  border: 1px solid rgba(227,98,6, .10);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(227,98,6, .03), rgba(255, 255, 255, .98) 28%),
    #fff;
  box-shadow: 0 18px 46px rgba(18, 19, 26, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.complete-process-card:hover {
  transform: translateY(-7px);
  border-color: rgba(227,98,6, .18);
  box-shadow: 0 26px 64px rgba(18, 19, 26, .12);
}

.complete-process-badge {
  position: absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #e36206;
  border: 1px solid rgba(227,98,6, .16);
  box-shadow: 0 0 0 10px rgba(227,98,6, .05), 0 16px 30px rgba(18, 19, 26, .08);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .06em;
}

.complete-process-media {
  height: 160px;
  display: block;
  margin-bottom: 14px;
  position: relative;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 24%, rgba(227,98,6, .08), transparent 42%),
    linear-gradient(180deg, #fff, #fffaf7);
  border: 1px solid rgba(227,98,6, .08);
  overflow: hidden;
}

.complete-process-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 0 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(227,98,6, .12);
  color: #e36206;
  box-shadow: 0 14px 34px rgba(18, 19, 26, .06);
}

.complete-process-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.complete-process-card h3 {
  margin: 0;
  color: #111827;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -.05em;
  font-weight: 950;
}

.complete-process-card p {
  margin: 10px 0 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 650;
}

.complete-process-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(227,98,6, .08);
  filter: blur(.2px);
  animation: completeProcessFloat 5.6s ease-in-out infinite;
}

.complete-process-orb.orb-a {
  width: 68px;
  height: 68px;
  left: 12px;
  top: 14px;
}

.complete-process-orb.orb-b {
  width: 36px;
  height: 36px;
  right: 14px;
  top: 18px;
  animation-delay: -1.2s;
}

.complete-process-orb.orb-c {
  width: 26px;
  height: 26px;
  right: 38px;
  bottom: 18px;
  animation-delay: -2s;
}

.complete-process-avatar,
.process-dashboard,
.book-calendar,
.service-panel {
  position: absolute;
  inset: 0;
  margin: auto;
}

.complete-process-avatar {
  width: 126px;
  height: 126px;
  bottom: 10px;
}

.avatar-headset,
.avatar-head,
.avatar-body {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.avatar-head {
  top: 28px;
  width: 34px;
  height: 34px;
  background: #111827;
  box-shadow: 0 0 0 7px rgba(227,98,6, .10);
}

.avatar-headset {
  top: 18px;
  width: 68px;
  height: 48px;
  border: 4px solid rgba(227,98,6, .90);
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: .92;
}

.avatar-headset::before,
.avatar-headset::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #111827;
}

.avatar-headset::before {
  left: -4px;
}

.avatar-headset::after {
  right: -4px;
}

.avatar-body {
  bottom: 12px;
  width: 72px;
  height: 52px;
  background:
    linear-gradient(180deg, #111827 0 40%, transparent 40%),
    linear-gradient(180deg, transparent 0 26px, #e36206 26px 100%);
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
  opacity: .96;
}

.complete-process-chat {
  position: absolute;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(227,98,6, .16);
  box-shadow: 0 14px 28px rgba(18, 19, 26, .08);
  color: #111827;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .01em;
  animation: completeProcessFloat 4.8s ease-in-out infinite;
}

.chat-1 {
  left: 8px;
  bottom: 26px;
}

.chat-2 {
  right: 10px;
  top: 60px;
  animation-delay: -1.1s;
}

.chat-3 {
  right: 22px;
  bottom: 18px;
  animation-delay: -2s;
}

.process-dashboard {
  width: 126px;
  height: 124px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #fff 0%, #fff 24%, #fffbf8 100%);
  border: 1px solid rgba(227,98,6, .12);
  box-shadow: 0 16px 34px rgba(18, 19, 26, .08);
}

.dashboard-top {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 14px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #111827 0 58%, #e36206 58% 100%);
}

.dashboard-line {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 24, 39, .08);
  overflow: hidden;
}

.dashboard-line::after {
  content: "";
  display: block;
  height: 100%;
  width: 42%;
  border-radius: inherit;
  background: #e36206;
  animation: completeProcessPulse 2.8s ease-in-out infinite;
}

.line-a { top: 42px; }
.line-b { top: 58px; }
.line-c { top: 74px; }
.line-d { top: 90px; }

.dashboard-check {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(227,98,6, .22);
}

.dashboard-check::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 9px;
  border-right: 2px solid #e36206;
  border-bottom: 2px solid #e36206;
  transform: rotate(45deg);
}

.check-a {
  left: 96px;
  top: 42px;
  animation: completeProcessTick 1.9s ease-in-out infinite;
}

.check-b {
  left: 96px;
  top: 74px;
  animation: completeProcessTick 1.9s ease-in-out infinite;
  animation-delay: -.8s;
}

.dashboard-gear {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid #111827;
  box-shadow:
    0 -11px 0 -8px #111827,
    0 11px 0 -8px #111827,
    11px 0 0 -8px #111827,
    -11px 0 0 -8px #111827,
    8px 8px 0 -8px #111827,
    -8px -8px 0 -8px #111827,
    8px -8px 0 -8px #111827,
    -8px 8px 0 -8px #111827;
  animation: completeProcessSpin 4.8s linear infinite;
}

.dashboard-progress {
  position: absolute;
  left: 16px;
  right: 52px;
  bottom: 18px;
  height: 8px;
  border-radius: 999px;
  background: rgba(227,98,6, .08);
}

.dashboard-progress::after {
  content: "";
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #111827 0 64%, #e36206 64% 100%);
  animation: completeProcessPulse 2.5s ease-in-out infinite;
}

.book-calendar {
  width: 126px;
  height: 124px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(227,98,6, .12);
  box-shadow: 0 16px 34px rgba(18, 19, 26, .08);
}

.calendar-top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 28px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, #111827 0 58%, #e36206 58% 100%);
}

.calendar-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 24, 39, .16);
}

.dot-a { left: 22px; top: 44px; }
.dot-b { left: 40px; top: 44px; }
.dot-c { left: 58px; top: 44px; }
.dot-d { left: 76px; top: 44px; }

.calendar-check {
  position: absolute;
  left: 78px;
  top: 64px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(227,98,6, .22);
  animation: completeProcessTick 2.4s ease-in-out infinite;
}

.calendar-check::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 7px;
  height: 11px;
  border-right: 2px solid #e36206;
  border-bottom: 2px solid #e36206;
  transform: rotate(45deg);
}

.calendar-clock {
  position: absolute;
  left: 18px;
  top: 58px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid #111827;
}

.calendar-clock::before,
.calendar-clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: left center;
  background: #111827;
  border-radius: 999px;
}

.calendar-clock::before {
  width: 8px;
  height: 2px;
  transform: translate(-1px, -1px) rotate(0deg);
}

.calendar-clock::after {
  width: 2px;
  height: 10px;
  transform: translate(-1px, -10px) rotate(0deg);
}

.calendar-day {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: #111827;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -.06em;
  animation: completeProcessFloat 4.8s ease-in-out infinite;
}

.service-panel {
  width: 126px;
  height: 124px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 75% 18%, rgba(227,98,6, .12), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fffbf8 100%);
  border: 1px solid rgba(227,98,6, .12);
  box-shadow: 0 16px 34px rgba(18, 19, 26, .08);
}

.solar-rack {
  position: absolute;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, .86), rgba(17, 24, 39, .86)),
    linear-gradient(90deg, transparent 0 33%, rgba(255, 255, 255, .14) 33% 34%, transparent 34% 66%, rgba(255, 255, 255, .14) 66% 67%, transparent 67% 100%),
    linear-gradient(180deg, transparent 0 33%, rgba(255, 255, 255, .14) 33% 34%, transparent 34% 66%, rgba(255, 255, 255, .14) 66% 67%, transparent 67% 100%);
  background-size: auto, 100% 100%, 100% 100%;
  box-shadow: 0 8px 18px rgba(17, 24, 39, .10);
}

.rack-a { left: 14px; top: 56px; width: 42px; height: 24px; }
.rack-b { left: 58px; top: 44px; width: 46px; height: 26px; transform: rotate(-10deg); }
.rack-c { left: 34px; top: 80px; width: 58px; height: 24px; transform: rotate(8deg); }

.solar-sun {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #e36206;
  box-shadow: 0 0 0 8px rgba(227,98,6, .06);
  animation: completeProcessPulse 3s ease-in-out infinite;
}

.technician-head,
.technician-body {
  position: absolute;
  left: 16px;
  border-radius: 50%;
  background: #111827;
}

.technician-head {
  top: 20px;
  width: 18px;
  height: 18px;
}

.technician-body {
  top: 38px;
  width: 28px;
  height: 44px;
  clip-path: polygon(30% 0, 70% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, #111827 0 38%, #e36206 38% 100%);
}

.tool-wrench {
  position: absolute;
  right: 18px;
  bottom: 22px;
  width: 28px;
  height: 6px;
  border-radius: 999px;
  background: #111827;
  transform: rotate(-22deg);
  transform-origin: center;
  animation: completeProcessSpin 4.6s linear infinite;
}

.tool-wrench::before,
.tool-wrench::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid #111827;
  background: #fff;
}

.tool-wrench::before {
  left: -7px;
  top: -4px;
  width: 12px;
  height: 12px;
}

.tool-wrench::after {
  right: -8px;
  top: -2px;
  width: 9px;
  height: 9px;
}

.completion-check {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(227,98,6, .22);
  animation: completeProcessTick 2.2s ease-in-out infinite;
}

.completion-check::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 7px;
  height: 11px;
  border-right: 2px solid #e36206;
  border-bottom: 2px solid #e36206;
  transform: rotate(45deg);
}

@keyframes completeProcessFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes completeProcessPulse {
  0%, 100% { transform: scaleX(.95); opacity: .7; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes completeProcessTick {
  0%, 100% { transform: scale(.92); opacity: .7; }
  50% { transform: scale(1); opacity: 1; }
}

@keyframes completeProcessSpin {
  to { transform: rotate(337deg); }
}

@media (max-width: 760px) {
  .complete-process-card {
    min-height: 0;
  }

  .complete-process-media {
    height: 142px;
  }

  .complete-process-avatar,
  .process-dashboard,
  .book-calendar,
  .service-panel {
    width: 112px;
    height: 110px;
  }

  .complete-process-avatar {
    width: 112px;
    height: 110px;
  }

  .complete-process-card h3 {
    font-size: 24px;
  }

  .complete-process-card p {
    font-size: 14px;
  }

  .complete-process-trust {
    gap: 12px;
  }
}

/* Complete Process homepage section */
.complete-process-section {
  padding: 100px 0 92px;
  background:
    radial-gradient(circle at top, rgba(227,98,6, .05), transparent 36%),
    linear-gradient(180deg, #fff, #fffbf8);
}

.complete-process-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.complete-process-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #e36206;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.complete-process-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.07em;
  font-weight: 950;
}

.complete-process-head h2 span {
  color: #e36206;
}

.complete-process-head p {
  max-width: 760px;
  margin: 20px auto 0;
  color: #667085;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 650;
}

.complete-process-stage {
  position: relative;
  height: 100px;
  margin: 10px auto 0;
  max-width: 1140px;
}

.complete-process-connector {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 8px;
  height: 84px;
  border-top: 2px dotted rgba(227,98,6, .28);
  border-radius: 50% / 100% 100% 0 0;
}

.complete-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.complete-process-card {
  position: relative;
  padding: 78px 26px 28px;
  border: 1px solid rgba(227,98,6, .10);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(227,98,6, .03), rgba(255, 255, 255, .98) 28%),
    #fff;
  box-shadow: 0 18px 46px rgba(18, 19, 26, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.complete-process-card:hover {
  transform: translateY(-7px);
  border-color: rgba(227,98,6, .18);
  box-shadow: 0 26px 64px rgba(18, 19, 26, .12);
}

.complete-process-badge {
  position: absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #e36206;
  border: 1px solid rgba(227,98,6, .16);
  box-shadow: 0 0 0 10px rgba(227,98,6, .05), 0 16px 30px rgba(18, 19, 26, .08);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .06em;
}

.complete-process-media {
  height: 188px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 24%, rgba(227,98,6, .08), transparent 42%),
    linear-gradient(180deg, #fff, #fffaf7);
  border: 1px solid rgba(227,98,6, .08);
  overflow: hidden;
}

.complete-process-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.complete-process-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 20px 0 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(227,98,6, .12);
  color: #e36206;
  box-shadow: 0 14px 34px rgba(18, 19, 26, .06);
}

.complete-process-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.complete-process-card h3 {
  margin: 0;
  color: #111827;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -.05em;
  font-weight: 950;
}

.complete-process-card p {
  margin: 12px 0 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 650;
}

.complete-process-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(227,98,6, .10);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #fff9f9);
  box-shadow: 0 14px 40px rgba(18, 19, 26, .05);
}

.complete-process-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 10px;
}

.complete-process-trust-item i {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: #e36206;
  margin-top: 9px;
  flex: 0 0 auto;
}

.complete-process-trust-item strong {
  display: block;
  color: #111827;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 950;
}

.complete-process-trust-item span {
  display: block;
  margin-top: 5px;
  color: #667085;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

@media (max-width: 1100px) {
  .complete-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .complete-process-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .complete-process-section {
    padding: 78px 0 72px;
  }

  .complete-process-head {
    margin-bottom: 28px;
  }

  .complete-process-head h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .complete-process-head p {
    font-size: 16px;
    margin-top: 16px;
  }

  .complete-process-stage {
    display: none;
  }

  .complete-process-grid,
  .complete-process-trust {
    grid-template-columns: 1fr;
  }

  .complete-process-grid {
    gap: 18px;
  }

  .complete-process-card {
    padding: 72px 20px 22px;
    border-radius: 24px;
  }

  .complete-process-media {
    height: 170px;
  }

  .complete-process-card h3 {
    font-size: 24px;
  }

  .complete-process-trust {
    padding: 18px;
    border-radius: 24px;
  }
}

/* Final premium tuning for the Complete Process section */
.complete-process-section .complete-process-grid {
  grid-auto-rows: 1fr;
}

.complete-process-section .complete-process-card {
  min-height: 100%;
  padding: 74px 24px 24px;
}

.complete-process-section .complete-process-media {
  height: 152px;
}

.complete-process-section .complete-process-icon {
  width: 54px;
  height: 54px;
}

.complete-process-section .complete-process-card h3 {
  font-size: 24px;
}

.complete-process-section .complete-process-card p {
  margin-top: 9px;
  font-size: 14px;
}

.complete-process-section .complete-process-stage {
  height: 96px;
}

.complete-process-section .complete-process-connector {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.complete-process-section .complete-process-connector-path {
  fill: none;
  stroke: rgba(227,98,6, .38);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1 10;
  animation: completeProcessDash 18s linear infinite;
}

.complete-process-section .complete-process-pulse {
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e36206;
  box-shadow: 0 0 0 8px rgba(227,98,6, .12);
  offset-path: path("M 80 70 C 240 22, 360 22, 470 70 S 720 118, 830 70 S 980 22, 1120 70");
  offset-rotate: 0deg;
  animation: completeProcessTravel 14s linear infinite;
}

.complete-process-section .complete-process-pulse::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  background: rgba(227,98,6, .22);
  animation: completeProcessPulseRing 2.4s ease-in-out infinite;
}

.complete-process-section .complete-process-card:hover {
  transform: translateY(-8px);
}

.complete-process-section .complete-process-card:hover .complete-process-media {
  transform: scale(1.03);
}

@keyframes completeProcessDash {
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes completeProcessTravel {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}

@keyframes completeProcessPulseRing {
  0%, 100% { transform: scale(.82); opacity: .35; }
  50% { transform: scale(1.18); opacity: .8; }
}

@media (max-width: 1100px) {
  .complete-process-section .complete-process-stage {
    display: none;
  }

  .complete-process-section .complete-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .complete-process-section .complete-process-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .complete-process-section {
    padding: 76px 0 70px;
  }

  .complete-process-section .complete-process-head h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .complete-process-section .complete-process-head p {
    font-size: 15px;
  }

  .complete-process-section .complete-process-grid,
  .complete-process-section .complete-process-trust {
    grid-template-columns: 1fr;
  }

  .complete-process-section .complete-process-card {
    padding: 68px 18px 20px;
  }

  .complete-process-section .complete-process-media {
    height: 132px;
  }

  .complete-process-section .complete-process-card h3 {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .complete-process-section .complete-process-connector-path,
  .complete-process-section .complete-process-pulse,
  .complete-process-section .complete-process-pulse::before,
  .complete-process-section .complete-process-orb,
  .complete-process-section .complete-process-chat,
  .complete-process-section .dashboard-line::after,
  .complete-process-section .dashboard-gear,
  .complete-process-section .dashboard-progress::after,
  .complete-process-section .calendar-check,
  .complete-process-section .calendar-day,
  .complete-process-section .solar-sun,
  .complete-process-section .tool-wrench,
  .complete-process-section .completion-check {
    animation: none !important;
  }

  .complete-process-section .complete-process-card:hover,
  .complete-process-section .complete-process-card:hover .complete-process-media {
    transform: none !important;
  }
}

/* Service detail pages */
body.service-detail-page {
  background: #fff;
  overflow-x: clip;
}

body.service-detail-page .service-video-hero {
  position: relative;
  min-height: clamp(560px, 76vh, 900px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #101117;
}

body.service-detail-page .service-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.service-detail-page .service-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 13, .42) 0%, rgba(8, 9, 13, .72) 100%),
    linear-gradient(90deg, rgba(10, 11, 16, .58) 0%, rgba(10, 11, 16, .18) 60%, rgba(10, 11, 16, .50) 100%);
}

body.service-detail-page .service-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 24px, 1440px);
  margin: 0 auto;
  padding: clamp(110px, 14vw, 180px) 0 clamp(56px, 8vw, 92px);
}

body.service-detail-page .service-hero-copy {
  width: min(100%, 840px);
  color: #fff;
}

body.service-detail-page .service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(227,98,6, .14);
  border: 1px solid rgba(227,98,6, .35);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body.service-detail-page .service-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(227,98,6, .08);
  border: 1px solid rgba(227,98,6, .14);
  color: #e36206;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body.service-detail-page .service-hero-title {
  margin: 20px 0 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .96;
  letter-spacing: -.06em;
}

body.service-detail-page .service-hero-text {
  margin: 20px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.8;
  font-weight: 650;
}

body.service-detail-page .service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

body.service-detail-page .service-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

body.service-detail-page .service-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

body.service-detail-page .service-overview-section {
  background: linear-gradient(180deg, #fff, #f7f8fb);
}

body.service-detail-page .service-overview-grid,
body.service-detail-page .service-inquiry-grid {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

body.service-detail-page .service-overview-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
}

body.service-detail-page .service-section-head h2,
body.service-detail-page .service-overview-copy h2,
body.service-detail-page .service-inquiry-copy h2,
body.service-detail-page .service-final-cta-card h2 {
  margin: 16px 0 0;
  color: #16161d;
  font-size: clamp(30px, 3.25vw, 50px);
  line-height: 1.03;
  letter-spacing: -.05em;
}

body.service-detail-page .service-section-head .section-intro,
body.service-detail-page .service-overview-copy .section-intro,
body.service-detail-page .service-inquiry-copy .section-intro,
body.service-detail-page .service-final-cta-card p {
  margin-top: 16px;
  color: #5f6674;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 650;
}

body.service-detail-page .service-overview-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

body.service-detail-page .service-overview-card,
body.service-detail-page .service-facts-card,
body.service-detail-page .service-inquiry-card,
body.service-detail-page .service-final-cta-card {
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(18, 19, 26, .06);
}

body.service-detail-page .service-overview-card {
  padding: 22px 20px 20px;
  min-height: 178px;
  border-top: 3px solid rgba(227,98,6, .40);
}

body.service-detail-page .service-overview-card strong {
  display: block;
  color: #15151b;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

body.service-detail-page .service-overview-card p {
  margin: 12px 0 0;
  color: #666d79;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 650;
}

body.service-detail-page .service-facts-card {
  padding: 28px;
}

body.service-detail-page .service-facts-card h3 {
  margin: 16px 0 0;
  color: #16161d;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.04em;
}

body.service-detail-page .service-facts-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

body.service-detail-page .service-facts-list div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fafbfc;
  border: 1px solid #eef1f5;
}

body.service-detail-page .service-facts-list dt {
  color: #7a818e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.service-detail-page .service-facts-list dd {
  margin: 0;
  color: #1f2027;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
}

body.service-detail-page .service-process-section {
  background: #fff;
}

body.service-detail-page .service-section-head {
  display: grid;
  justify-items: start;
  gap: 0;
}

body.service-detail-page .service-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

body.service-detail-page .service-step-card {
  display: block;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  text-align: left;
  color: inherit;
  font: inherit;
  border: 1px solid #e8ebf0;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
  padding: 24px 22px;
  min-height: 220px;
  box-shadow: 0 16px 40px rgba(18, 19, 26, .05);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

body.service-detail-page .service-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227,98,6, .18);
  box-shadow: 0 24px 60px rgba(18, 19, 26, .10);
}

body.service-detail-page .service-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.service-detail-page .service-step-top small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(227,98,6, .10);
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
}

body.service-detail-page .service-step-top span {
  color: var(--red);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

body.service-detail-page .service-step-card h3 {
  margin: 16px 0 0;
  color: #17171d;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -.04em;
}

body.service-detail-page .service-step-card p {
  margin: 12px 0 0;
  color: #666d79;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 650;
}

body.service-detail-page .service-faq-section {
  background: linear-gradient(180deg, #fff, #fafbfc);
}

body.service-detail-page .service-faq-list {
  max-width: 1080px;
  margin: 28px auto 0;
}

body.service-detail-page .service-faq-item {
  background: #fff;
}

body.service-detail-page .service-inquiry-section {
  background: linear-gradient(180deg, #fbfbfc, #fff);
}

body.service-detail-page .service-inquiry-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

body.service-detail-page .service-inquiry-notes {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

body.service-detail-page .service-inquiry-note {
  padding: 15px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-left: 3px solid var(--red);
  color: #17171d;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(18, 19, 26, .05);
}

body.service-detail-page .service-inquiry-card {
  padding: clamp(24px, 3vw, 36px);
}

body.service-detail-page .service-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.service-detail-page .service-form-field-full {
  grid-column: 1 / -1;
}

body.service-detail-page .service-form-submit {
  margin-top: 8px;
}

body.service-detail-page .service-form-submit .btn.primary {
  min-width: 220px;
}

body.service-detail-page .service-final-cta-card {
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
  background: linear-gradient(180deg, #171820 0%, #0f1117 100%);
  color: #fff;
}

body.service-detail-page .service-final-cta-card h2 {
  color: #fff;
}

body.service-detail-page .service-final-cta-card .service-section-kicker {
  color: #fff;
  background: rgba(227,98,6, .14);
  border-color: rgba(227,98,6, .24);
}

body.service-detail-page .service-final-cta-card p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, .76);
}

body.service-detail-page .service-final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

@media (max-width: 1040px) {
  body.service-detail-page .service-video-hero {
    min-height: clamp(520px, 72vh, 820px);
  }

  body.service-detail-page .service-overview-grid,
  body.service-detail-page .service-inquiry-grid {
    grid-template-columns: 1fr;
  }

  body.service-detail-page .service-overview-cards,
  body.service-detail-page .service-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.service-detail-page .service-facts-card {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  body.service-detail-page .service-hero-content {
    width: min(100% - 20px, 1440px);
    padding: 104px 0 64px;
  }

  body.service-detail-page .service-hero-title {
    font-size: clamp(34px, 10vw, 46px);
  }

  body.service-detail-page .service-hero-text,
  body.service-detail-page .service-section-head .section-intro,
  body.service-detail-page .service-overview-copy .section-intro,
  body.service-detail-page .service-inquiry-copy .section-intro,
  body.service-detail-page .service-final-cta-card p {
    font-size: 16px;
  }

  body.service-detail-page .service-overview-cards,
  body.service-detail-page .service-steps-grid,
  body.service-detail-page .service-form-grid {
    grid-template-columns: 1fr;
  }

  body.service-detail-page .service-step-card {
    min-height: 0;
  }

  body.service-detail-page .service-final-cta-actions,
  body.service-detail-page .service-hero-actions {
    align-items: stretch;
  }

  body.service-detail-page .service-final-cta-actions .btn,
  body.service-detail-page .service-hero-actions .btn,
  body.service-detail-page .service-form-submit .btn.primary {
    width: 100%;
  }
}

/* Homepage final full-bleed enforcement */
html,
body {
  overflow-x: clip !important;
}

body.home-page main > section:not(.home-clean-sections):not(.clean-final-cta) {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  box-sizing: border-box !important;
}

body.home-page .global-presence-section,
body.home-page .one-stop-section,
body.home-page .complete-process-section,
body.home-page .clean-app-section,
body.home-page .simple-why-section,
body.home-page .simple-offer-section,
body.home-page .simple-process-section,
body.home-page .testimonial-section {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  box-sizing: border-box !important;
}

body.home-page .global-presence-container,
body.home-page .one-stop-container,
body.home-page .complete-process-section > .container,
body.home-page .clean-app-section,
body.home-page .why-minimal-head,
body.home-page .why-minimal-grid,
body.home-page .offer-group,
body.home-page .simple-center-head,
body.home-page .simple-process-grid,
body.home-page .simple-process-action,
body.home-page .testimonial-head-wrap,
body.home-page .testimonial-proof-wrap,
body.home-page .testimonial-marquee-viewport {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

body.home-page .global-presence-container,
body.home-page .one-stop-container,
body.home-page .complete-process-section > .container,
body.home-page .clean-app-section,
body.home-page .simple-why-section,
body.home-page .simple-offer-section,
body.home-page .simple-process-section,
body.home-page .testimonial-section {
  padding-left: clamp(24px, 4vw, 72px) !important;
  padding-right: clamp(24px, 4vw, 72px) !important;
}

body.home-page .global-presence-visual,
body.home-page .one-stop-visual,
body.home-page .complete-process-section .process-grid,
body.home-page .complete-process-section .complete-process-trust,
body.home-page .complete-process-stage,
body.home-page .testimonial-marquee-viewport {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

body.home-page .global-presence-map,
body.home-page .one-stop-image {
  width: 100% !important;
  max-width: none !important;
  display: block !important;
  border-radius: 0 !important;
}

body.home-page .one-stop-visual {
  border-radius: 0 !important;
  overflow: hidden !important;
}

body.home-page .testimonial-marquee-viewport {
  overflow: hidden !important;
}

body.home-page .clean-app-section {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: clamp(28px, 5vw, 96px) !important;
  padding-right: clamp(28px, 5vw, 96px) !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) !important;
  gap: clamp(54px, 7vw, 120px) !important;
}

body.home-page .clean-app-copy {
  max-width: none !important;
  width: 100% !important;
}

body.home-page .clean-app-copy h2 {
  max-width: none !important;
}

body.home-page .clean-app-copy > p {
  max-width: 620px !important;
}

body.home-page .clean-app-features {
  max-width: 100% !important;
  width: 100% !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

body.home-page .clean-phone-wrap {
  width: min(480px, 100%) !important;
  max-width: none !important;
  justify-self: end !important;
}

body.home-page .clean-phone {
  width: 100% !important;
  max-width: 420px !important;
}

@media (max-width: 1100px) {
  body.home-page .global-presence-section,
  body.home-page .one-stop-section,
  body.home-page .complete-process-section,
  body.home-page .clean-app-section,
  body.home-page .simple-why-section,
  body.home-page .simple-offer-section,
  body.home-page .simple-process-section,
  body.home-page .testimonial-section {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
  }

  body.home-page .global-presence-container,
  body.home-page .one-stop-container,
  body.home-page .complete-process-section > .container,
  body.home-page .clean-app-section,
  body.home-page .why-minimal-head,
  body.home-page .why-minimal-grid,
  body.home-page .offer-group,
  body.home-page .simple-center-head,
  body.home-page .simple-process-grid,
  body.home-page .simple-process-action,
  body.home-page .testimonial-head-wrap,
  body.home-page .testimonial-proof-wrap,
  body.home-page .testimonial-marquee-viewport {
    width: 100% !important;
    padding-left: clamp(20px, 3.5vw, 48px) !important;
    padding-right: clamp(20px, 3.5vw, 48px) !important;
  }

  body.home-page .clean-app-section {
    grid-template-columns: 1fr !important;
    gap: 56px !important;
    padding-left: clamp(20px, 3.5vw, 48px) !important;
    padding-right: clamp(20px, 3.5vw, 48px) !important;
  }

  body.home-page .why-minimal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.home-page .simple-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.home-page .offer-image-grid,
  body.home-page .complete-process-grid,
  body.home-page .complete-process-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  body.home-page .global-presence-container,
  body.home-page .one-stop-container,
  body.home-page .complete-process-section > .container,
  body.home-page .clean-app-section,
  body.home-page .why-minimal-head,
  body.home-page .why-minimal-grid,
  body.home-page .offer-group,
  body.home-page .simple-center-head,
  body.home-page .simple-process-grid,
  body.home-page .simple-process-action,
  body.home-page .testimonial-head-wrap,
  body.home-page .testimonial-proof-wrap,
  body.home-page .testimonial-marquee-viewport {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body.home-page .clean-app-section {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body.home-page .why-minimal-grid,
  body.home-page .simple-process-grid,
  body.home-page .offer-image-grid,
  body.home-page .complete-process-grid,
  body.home-page .complete-process-trust {
    grid-template-columns: 1fr !important;
  }
}

/* Homepage-wide width expansion overrides */
body.home-page .global-presence-container,
body.home-page .one-stop-container,
body.home-page .complete-process-section > .container,
body.home-page .why-minimal-head,
body.home-page .why-minimal-grid,
body.home-page .offer-group,
body.home-page .simple-center-head,
body.home-page .simple-process-grid,
body.home-page .simple-process-action,
body.home-page .testimonial-head-wrap,
body.home-page .testimonial-proof-wrap {
  width: min(1700px, calc(100% - 32px)) !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

body.home-page .global-presence-visual,
body.home-page .one-stop-visual,
body.home-page .complete-process-section .process-grid,
body.home-page .complete-process-section .complete-process-trust,
body.home-page .complete-process-stage,
body.home-page .testimonial-marquee-viewport {
  width: 100% !important;
  max-width: 1700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

body.home-page .global-presence-map,
body.home-page .one-stop-image {
  width: 100% !important;
  max-width: 1700px !important;
  display: block !important;
}

body.home-page .complete-process-section > .container {
  padding-left: clamp(24px, 4vw, 72px) !important;
  padding-right: clamp(24px, 4vw, 72px) !important;
}

body.home-page .complete-process-grid,
body.home-page .complete-process-trust {
  max-width: 1700px !important;
}

body.home-page .clean-app-section {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: clamp(24px, 4vw, 72px) !important;
  padding-right: clamp(24px, 4vw, 72px) !important;
  box-sizing: border-box !important;
}

body.home-page .clean-app-copy {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}

body.home-page .clean-app-copy h2 {
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
}

body.home-page .clean-app-copy > p {
  max-width: 100% !important;
  min-width: 0 !important;
}

body.home-page .clean-app-features {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
}

body.home-page .clean-app-features div {
  min-width: 0 !important;
}

body.home-page .clean-phone-wrap {
  width: clamp(360px, 34vw, 520px) !important;
  min-width: 0 !important;
}

body.home-page .why-minimal-head {
  max-width: 1180px !important;
}

body.home-page .why-minimal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(22px, 2.5vw, 48px) !important;
  width: min(1700px, calc(100% - 32px)) !important;
  max-width: none !important;
}

body.home-page .why-minimal-item {
  width: auto !important;
  max-width: none !important;
}

body.home-page .why-minimal-image {
  width: 100% !important;
  max-width: none !important;
}

body.home-page .offer-group {
  width: min(1700px, calc(100% - 32px)) !important;
  max-width: none !important;
}

body.home-page .offer-image-grid {
  width: 100% !important;
  max-width: none !important;
}

body.home-page .simple-center-head {
  max-width: 980px !important;
}

body.home-page .simple-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(24px, 2.8vw, 44px) !important;
  width: min(1700px, calc(100% - 32px)) !important;
  max-width: none !important;
}

body.home-page .testimonial-head-wrap,
body.home-page .testimonial-proof-wrap {
  width: min(1700px, calc(100% - 32px)) !important;
  max-width: none !important;
}

body.home-page .testimonial-marquee-viewport {
  width: min(1700px, calc(100% - 32px)) !important;
  max-width: none !important;
}

@media (max-width: 1100px) {
  body.home-page .global-presence-container,
  body.home-page .one-stop-container,
  body.home-page .complete-process-section > .container,
  body.home-page .why-minimal-head,
  body.home-page .why-minimal-grid,
  body.home-page .offer-group,
  body.home-page .simple-center-head,
  body.home-page .simple-process-grid,
  body.home-page .simple-process-action,
  body.home-page .testimonial-head-wrap,
  body.home-page .testimonial-proof-wrap,
  body.home-page .testimonial-marquee-viewport {
    width: min(100% - 40px, 1700px) !important;
  }

  body.home-page .clean-app-section {
    width: 100vw !important;
    padding-left: clamp(20px, 3.5vw, 48px) !important;
    padding-right: clamp(20px, 3.5vw, 48px) !important;
    grid-template-columns: 1fr !important;
    gap: 56px !important;
  }

  body.home-page .clean-app-copy {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
  }

  body.home-page .clean-app-copy h2,
  body.home-page .clean-app-copy > p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.home-page .clean-app-features {
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  }

  body.home-page .clean-app-features div {
    text-align: left !important;
    min-width: 0 !important;
  }

  body.home-page .clean-phone-wrap {
    min-height: 600px !important;
    width: min(420px, 100%) !important;
    margin: 0 auto !important;
  }

  body.home-page .clean-phone {
    width: min(340px, 100%) !important;
  }

  body.home-page .why-minimal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.home-page .simple-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.home-page .offer-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.home-page .complete-process-grid,
  body.home-page .complete-process-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  body.home-page .global-presence-container,
  body.home-page .one-stop-container,
  body.home-page .complete-process-section > .container,
  body.home-page .why-minimal-head,
  body.home-page .why-minimal-grid,
  body.home-page .offer-group,
  body.home-page .simple-center-head,
  body.home-page .simple-process-grid,
  body.home-page .simple-process-action,
  body.home-page .testimonial-head-wrap,
  body.home-page .testimonial-proof-wrap,
  body.home-page .testimonial-marquee-viewport {
    width: min(100% - 28px, 1700px) !important;
  }

  body.home-page .clean-app-section {
    width: 100vw !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  body.home-page .clean-app-copy h2 {
    font-size: clamp(34px, 10vw, 44px) !important;
    letter-spacing: -.055em !important;
  }

  body.home-page .clean-app-copy > p {
    font-size: 15px !important;
  }

  body.home-page .clean-app-features {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  body.home-page .clean-app-features div {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 12px !important;
    text-align: left !important;
    padding: 15px !important;
    min-height: auto !important;
  }

  body.home-page .clean-app-features b {
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  body.home-page .clean-app-features p {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  body.home-page .app-feature-icon {
    width: 42px !important;
    height: 42px !important;
  }

  body.home-page .clean-phone-wrap {
    min-height: 520px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.home-page .clean-phone-wrap::before {
    width: 320px !important;
    height: 320px !important;
  }

  body.home-page .clean-phone-wrap::after {
    width: 360px !important;
    height: 360px !important;
  }

  body.home-page .phone-platform {
    width: min(300px, calc(100vw - 28px)) !important;
    bottom: 22px !important;
  }

  body.home-page .clean-phone {
    width: min(320px, calc(100vw - 38px)) !important;
    min-height: 500px !important;
    border-width: 8px !important;
    padding: 24px 16px 18px !important;
    transform: none !important;
    animation: appPhoneFloatMobile 6s ease-in-out infinite !important;
  }

  body.home-page .why-minimal-grid,
  body.home-page .simple-process-grid,
  body.home-page .offer-image-grid,
  body.home-page .complete-process-grid,
  body.home-page .complete-process-trust {
    grid-template-columns: 1fr !important;
  }
}

body.home-page .clean-phone-wrap {
  --phone-enter-x: 34px;
  --phone-enter-y: 42px;
  --phone-enter-rotate: 4deg;
  --phone-enter-scale: .94;
}

body.home-page .clean-phone-wrap .app-visual-ring {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.84);
  will-change: transform, opacity;
}

body.home-page .clean-phone {
  opacity: 1 !important;
  transform: translate3d(var(--phone-enter-x), var(--phone-enter-y), 0) rotate(var(--phone-enter-rotate)) scale(var(--phone-enter-scale)) !important;
  box-shadow:
    12px 14px 30px rgba(18, 19, 26, .10),
    4px 0 0 rgba(0, 0, 0, .03) !important;
  animation: none !important;
  transform-origin: center center !important;
  will-change: transform, opacity, box-shadow !important;
}

body.home-page .clean-phone-wrap.is-revealed .clean-phone {
  animation: homePhonePremiumSettle 1.55s cubic-bezier(0.22, 1, 0.36, 1) 150ms both !important;
}

body.home-page .clean-phone-wrap.is-revealed .app-ring-a {
  animation: homeAppRingReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

body.home-page .clean-phone-wrap.is-revealed .app-ring-b {
  animation: homeAppRingReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) 270ms both;
}

body.home-page .clean-phone-wrap.is-revealed .phone-platform {
  animation: homePhonePlatformReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 160ms both;
}

@keyframes homePhonePremiumSettle {
  0% {
    opacity: 0;
    transform: translate3d(var(--phone-enter-x), var(--phone-enter-y), 0) rotate(var(--phone-enter-rotate)) scale(var(--phone-enter-scale));
    box-shadow:
      12px 14px 30px rgba(18, 19, 26, .10),
      4px 0 0 rgba(0, 0, 0, .03);
  }

  58% {
    opacity: 1;
    transform: perspective(1100px) rotateY(-7deg) rotateX(1deg) translate3d(-3px, 2px, 0) rotate(-1.2deg) scale(1.01);
    box-shadow:
      18px 20px 46px rgba(18, 19, 26, .16),
      5px 0 0 rgba(0, 0, 0, .05);
  }

  100% {
    opacity: 1;
    transform: perspective(1100px) rotateY(-7deg) rotateX(1deg) translate3d(0, 0, 0) scale(1);
    box-shadow:
      20px 22px 54px rgba(18, 19, 26, .18),
      6px 0 0 rgba(0, 0, 0, .06);
  }
}

@keyframes homeAppRingReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.84);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes homePhonePlatformReveal {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px) scale(.98);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  body.home-page .clean-phone-wrap {
    --phone-enter-x: 20px;
    --phone-enter-y: 28px;
    --phone-enter-rotate: 2deg;
    --phone-enter-scale: .96;
  }
}

@media (max-width: 700px) {
  body.home-page .clean-phone-wrap {
    --phone-enter-x: 16px;
    --phone-enter-y: 24px;
    --phone-enter-rotate: 0deg;
    --phone-enter-scale: .96;
  }

  body.home-page .clean-phone-wrap.is-revealed .clean-phone {
    animation: homePhonePremiumSettleMobile 1.3s cubic-bezier(0.22, 1, 0.36, 1) 130ms both !important;
  }

  body.home-page .clean-phone-wrap.is-revealed .app-ring-a {
    animation: homeAppRingRevealMobile 1.5s cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
  }

  body.home-page .clean-phone-wrap.is-revealed .app-ring-b {
    animation: homeAppRingRevealMobile 1.5s cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
  }

  body.home-page .clean-phone-wrap.is-revealed .phone-platform {
    animation: homePhonePlatformRevealMobile 1.05s cubic-bezier(0.22, 1, 0.36, 1) 140ms both;
  }
}

@keyframes homePhonePremiumSettleMobile {
  0% {
    opacity: 0;
    transform: translate3d(16px, 24px, 0) scale(.96);
    box-shadow:
      10px 12px 26px rgba(18, 19, 26, .08),
      2px 0 0 rgba(0, 0, 0, .025);
  }

  58% {
    opacity: 1;
    transform: translate3d(4px, 5px, 0) scale(1.008);
    box-shadow:
      16px 18px 40px rgba(18, 19, 26, .13),
      4px 0 0 rgba(0, 0, 0, .04);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow:
      18px 20px 48px rgba(18, 19, 26, .15),
      5px 0 0 rgba(0, 0, 0, .05);
  }
}

@keyframes homeAppRingRevealMobile {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.84);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes homePhonePlatformRevealMobile {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(8px) scale(.98);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

/* Complete Process corporate refresh */
.complete-process-section {
  padding: 90px 0 82px;
  background: linear-gradient(180deg, #fff, #fbfbfc);
}

.complete-process-section .complete-process-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.complete-process-section .complete-process-head h2 {
  font-size: clamp(40px, 4.2vw, 64px);
}

.complete-process-section .complete-process-head p {
  font-size: 18px;
  max-width: 740px;
}

.complete-process-section .complete-process-stage {
  position: relative;
  height: 24px;
  margin: 10px auto 14px;
  max-width: 1140px;
}

.complete-process-section .complete-process-connector {
  position: absolute;
  left: 11%;
  right: 11%;
  top: 12px;
  height: 1px;
  background: linear-gradient(90deg, rgba(227,98,6, 0), rgba(227,98,6, .34) 12%, rgba(227,98,6, .34) 88%, rgba(227,98,6, 0));
  border-radius: 999px;
}

.complete-process-section .complete-process-pulse {
  position: absolute;
  top: 8px;
  left: 11%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e36206;
  box-shadow: 0 0 0 0 rgba(227,98,6, .22);
  animation: completeProcessLineTravel 9s linear infinite, completeProcessPulseRing 2.8s ease-in-out infinite;
}

.complete-process-section .complete-process-pulse::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(227,98,6, .16);
}

.complete-process-section .complete-process-grid {
  gap: 18px;
}

.complete-process-section .complete-process-card {
  padding: 66px 22px 22px;
  border-radius: 26px;
  border: 1px solid rgba(227,98,6, .10);
  box-shadow: 0 16px 34px rgba(18, 19, 26, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.complete-process-section .complete-process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(18, 19, 26, .10);
  border-color: rgba(227,98,6, .16);
}

.complete-process-section .complete-process-card:hover .complete-process-media {
  transform: scale(1.03);
}

.complete-process-section .complete-process-card h3 {
  font-size: 23px;
  margin-top: 0;
}

.complete-process-section .complete-process-card p {
  font-size: 14px;
  line-height: 1.58;
}

.complete-process-section .complete-process-media {
  position: relative;
  height: 128px;
  margin-bottom: 12px;
  border-radius: 22px;
  border: 1px solid rgba(227,98,6, .10);
  background: linear-gradient(180deg, #fff, #fffbf8);
  overflow: hidden;
  transform: translateZ(0);
}

.complete-process-section .complete-process-panel {
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fffdfd);
  border: 1px solid rgba(17, 24, 39, .08);
  overflow: hidden;
}

.complete-process-section .complete-process-glow {
  position: absolute;
  border-radius: 50%;
  background: rgba(227,98,6, .08);
  filter: blur(2px);
  animation: completeProcessBreath 3.8s ease-in-out infinite;
}

.complete-process-section .glow-a {
  width: 88px;
  height: 88px;
  left: -24px;
  top: -18px;
}

.complete-process-section .glow-b {
  width: 60px;
  height: 60px;
  right: -20px;
  bottom: -14px;
  animation-delay: -1.2s;
}

.complete-process-section .process-panel-top {
  position: absolute;
  inset: 14px 14px auto;
  display: flex;
  gap: 12px;
  align-items: center;
}

.complete-process-section .process-icon-circle {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(227,98,6, .16);
  background: #fff;
  color: #e36206;
  box-shadow: 0 10px 24px rgba(18, 19, 26, .05);
}

.complete-process-section .process-icon-circle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.complete-process-section .process-panel-copy strong {
  display: block;
  color: #111827;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 950;
}

.complete-process-section .process-panel-copy span {
  display: block;
  margin-top: 3px;
  color: #667085;
  font-size: 12px;
  font-weight: 650;
}

.complete-process-section .process-device {
  position: absolute;
  left: 50%;
  top: 50px;
  width: 104px;
  height: 54px;
  transform: translateX(-50%);
}

.complete-process-section .device-screen {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, .10);
  background:
    linear-gradient(180deg, #fff, #fbfbfc),
    linear-gradient(90deg, rgba(227,98,6, .12), rgba(227,98,6, .02));
  box-shadow: 0 12px 24px rgba(18, 19, 26, .05);
}

.complete-process-section .device-screen::before,
.complete-process-section .device-screen::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17, 24, 39, .10), rgba(227,98,6, .45), rgba(17, 24, 39, .10));
}

.complete-process-section .device-screen::before {
  top: 12px;
}

.complete-process-section .device-screen::after {
  top: 21px;
  width: 54%;
  right: auto;
  animation: completeProcessBar 2.8s ease-in-out infinite;
}

.complete-process-section .device-keyboard {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 12px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, rgba(17, 24, 39, .78), rgba(17, 24, 39, .9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}

.complete-process-section .process-bubbles {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.complete-process-section .process-bubbles span,
.complete-process-section .process-checklist span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(227,98,6, .10);
  color: #111827;
  background: #fff;
  font-size: 11px;
  font-weight: 850;
  box-shadow: 0 10px 18px rgba(18, 19, 26, .04);
}

.complete-process-section .process-checklist {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  display: grid;
  gap: 6px;
}

.complete-process-section .process-checklist span i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #e36206;
  position: relative;
}

.complete-process-section .process-checklist span i::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  width: 4px;
  height: 6px;
  border-right: 1.5px solid #e36206;
  border-bottom: 1.5px solid #e36206;
  transform: rotate(45deg);
}

.complete-process-section .process-dashboard-lines {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 50px;
  display: grid;
  gap: 10px;
}

.complete-process-section .process-dashboard-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17, 24, 39, .10), rgba(17, 24, 39, .06));
  overflow: hidden;
}

.complete-process-section .process-dashboard-lines span::after {
  content: "";
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e36206, rgba(227,98,6, .65));
  animation: completeProcessBar 2.8s ease-in-out infinite;
}

.complete-process-section .process-dashboard-lines .mid::after {
  width: 84%;
}

.complete-process-section .process-gear {
  position: absolute;
  right: 16px;
  top: 18px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #111827;
  box-shadow:
    0 -9px 0 -7px #111827,
    0 9px 0 -7px #111827,
    9px 0 0 -7px #111827,
    -9px 0 0 -7px #111827;
  animation: completeProcessSpin 8s linear infinite;
}

.complete-process-section .process-calendar {
  position: absolute;
  left: 50%;
  top: 50px;
  width: 104px;
  height: 54px;
  transform: translateX(-50%);
}

.complete-process-section .calendar-bar {
  position: absolute;
  inset: 0 0 auto;
  height: 16px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, #111827, #e36206);
}

.complete-process-section .calendar-slot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: rgba(17, 24, 39, .08);
  animation: completeProcessTick 3.6s ease-in-out infinite;
}

.complete-process-section .slot-a { left: 14px; top: 24px; }
.complete-process-section .slot-b { left: 34px; top: 24px; animation-delay: -.4s; }
.complete-process-section .slot-c { left: 54px; top: 24px; animation-delay: -.8s; }
.complete-process-section .slot-d { left: 74px; top: 24px; animation-delay: -1.2s; }
.complete-process-section .slot-e { left: 24px; top: 40px; animation-delay: -.2s; }
.complete-process-section .slot-f { left: 64px; top: 40px; animation-delay: -.6s; }

.complete-process-section .calendar-clock {
  position: absolute;
  right: 12px;
  top: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #111827;
  background: #fff;
  animation: completeProcessSpin 6s linear infinite;
}

.complete-process-section .calendar-clock::before,
.complete-process-section .calendar-clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #111827;
  border-radius: 999px;
  transform-origin: left center;
}

.complete-process-section .calendar-clock::before {
  width: 5px;
  height: 1.5px;
  transform: translate(-1px, -1px) rotate(0deg);
}

.complete-process-section .calendar-clock::after {
  width: 1.5px;
  height: 5px;
  transform: translate(-1px, -5px) rotate(0deg);
}

.complete-process-section .calendar-check {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(227,98,6, .16);
  background: #fff;
  box-shadow: 0 10px 18px rgba(18, 19, 26, .04);
  animation: completeProcessPulseRing 2.8s ease-in-out infinite;
}

.complete-process-section .calendar-check::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 7px;
  height: 10px;
  border-right: 1.8px solid #e36206;
  border-bottom: 1.8px solid #e36206;
  transform: rotate(45deg);
}

.complete-process-section .process-solar {
  position: absolute;
  left: 50%;
  top: 48px;
  width: 108px;
  height: 54px;
  transform: translateX(-50%);
}

.complete-process-section .solar-grid {
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(17, 24, 39, .12);
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(255,255,255,.18) 49% 51%, transparent 51% 100%),
    linear-gradient(180deg, transparent 0 49%, rgba(255,255,255,.18) 49% 51%, transparent 51% 100%),
    linear-gradient(135deg, #111827, #2a2f39);
  box-shadow: 0 12px 24px rgba(18, 19, 26, .08);
}

.complete-process-section .solar-grid-b {
  left: 20px;
  top: 10px;
  width: 72px;
  height: 42px;
  transform: rotate(-10deg);
  opacity: .96;
}

.complete-process-section .service-tool {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 24px;
  height: 6px;
  border-radius: 999px;
  background: #111827;
  transform: rotate(-24deg);
  animation: completeProcessSpin 10s linear infinite;
}

.complete-process-section .service-tool::before,
.complete-process-section .service-tool::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid #111827;
  background: #fff;
}

.complete-process-section .service-tool::before {
  left: -7px;
  top: -3px;
  width: 10px;
  height: 10px;
}

.complete-process-section .service-tool::after {
  right: -8px;
  top: -1px;
  width: 7px;
  height: 7px;
}

.complete-process-section .service-check {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(227,98,6, .16);
  background: #fff;
  animation: completeProcessPulseRing 2.8s ease-in-out infinite;
}

.complete-process-section .service-check::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 7px;
  height: 10px;
  border-right: 1.8px solid #e36206;
  border-bottom: 1.8px solid #e36206;
  transform: rotate(45deg);
}

.complete-process-section .complete-process-trust {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #fcfcfd);
  box-shadow: 0 12px 28px rgba(18, 19, 26, .04);
  gap: 12px;
}

.complete-process-section .complete-process-trust-item {
  padding: 6px 6px;
  gap: 10px;
}

.complete-process-section .complete-process-trust-item i {
  width: 14px;
  height: 2px;
  margin-top: 8px;
}

.complete-process-section .complete-process-trust-item strong {
  font-size: 15px;
}

.complete-process-section .complete-process-trust-item span {
  font-size: 13px;
}

@keyframes completeProcessLineTravel {
  0% { left: 11%; }
  100% { left: calc(89% - 8px); }
}

@keyframes completeProcessBreath {
  0%, 100% { opacity: .32; transform: scale(.96); }
  50% { opacity: .7; transform: scale(1.04); }
}

@keyframes completeProcessBar {
  0%, 100% { transform: translateX(0); opacity: .88; }
  50% { transform: translateX(6px); opacity: 1; }
}

@media (max-width: 1100px) {
  .complete-process-section .complete-process-stage {
    display: none;
  }

  .complete-process-section .complete-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .complete-process-section .complete-process-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .complete-process-section {
    padding: 76px 0 68px;
  }

  .complete-process-section .complete-process-head {
    margin-bottom: 24px;
  }

  .complete-process-section .complete-process-head h2 {
    font-size: clamp(34px, 9.5vw, 48px);
  }

  .complete-process-section .complete-process-head p {
    font-size: 15px;
  }

  .complete-process-section .complete-process-grid,
  .complete-process-section .complete-process-trust {
    grid-template-columns: 1fr;
  }

  .complete-process-section .complete-process-card {
    padding: 64px 18px 18px;
  }

  .complete-process-section .complete-process-media {
    height: 118px;
    margin-bottom: 10px;
  }

  .complete-process-section .complete-process-panel {
    inset: 10px;
  }

  .complete-process-section .complete-process-card h3 {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .complete-process-section .complete-process-pulse,
  .complete-process-section .complete-process-pulse::before,
  .complete-process-section .complete-process-glow,
  .complete-process-section .process-gear,
  .complete-process-section .process-dashboard-lines span::after,
  .complete-process-section .calendar-slot,
  .complete-process-section .calendar-clock,
  .complete-process-section .calendar-check,
  .complete-process-section .service-tool,
  .complete-process-section .service-check,
  .complete-process-section .process-icon-circle svg,
  .complete-process-section .process-device,
  .complete-process-section .solar-grid,
  .complete-process-section .device-screen::after {
    animation: none !important;
  }

  .complete-process-section .complete-process-card:hover,
  .complete-process-section .complete-process-card:hover .complete-process-media {
    transform: none !important;
  }
}

/* Homepage scroll reveal motion */
body.home-page .reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, var(--reveal-y, 28px), 0) scale(var(--reveal-scale, 1));
  transition:
    opacity var(--reveal-duration, 820ms) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--reveal-duration, 820ms) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.home-page .reveal-on-scroll.reveal-fade-up {
  --reveal-y: 28px;
  --reveal-scale: 1;
}

body.home-page .reveal-on-scroll.reveal-scale-soft {
  --reveal-y: 20px;
  --reveal-scale: .985;
}

body.home-page .reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

body.home-page .reveal-stagger {
}

body.home-page .reveal-stagger > .reveal-on-scroll {
  --reveal-delay: 0ms;
}

body.home-page .hero-reveal-surface {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
}

/* Complete Process Lottie refresh */
.complete-process-section {
  padding: 88px 0 78px;
  background: linear-gradient(180deg, #fff, #fbfbfc);
}

.complete-process-section .complete-process-head {
  max-width: 860px;
  margin-bottom: 24px;
}

.complete-process-section .complete-process-head h2 {
  font-size: clamp(40px, 4vw, 62px);
}

.complete-process-section .complete-process-head p {
  max-width: 760px;
  font-size: 17px;
}

.complete-process-section .process-stage {
  position: relative;
  height: 22px;
  margin: 0 auto 14px;
  max-width: 1120px;
}

.complete-process-section .process-connector {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 10px;
  height: 1px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(227,98,6, .55) 0 7px,
      transparent 7px 16px
    );
  opacity: .55;
}

.complete-process-section .process-connector-pulse {
  position: absolute;
  left: 10%;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e36206;
  box-shadow: 0 0 0 6px rgba(227,98,6, .08);
  animation: processConnectorTravel 10s linear infinite;
}

.complete-process-section .process-connector-pulse::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1px solid rgba(227,98,6, .14);
  animation: processConnectorBreath 2.8s ease-in-out infinite;
}

.complete-process-section .process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.complete-process-section .process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 58px 22px 22px;
  border-radius: 26px;
  border: 1px solid rgba(227,98,6, .10);
  background: linear-gradient(180deg, #fff, #fffdfd);
  box-shadow: 0 14px 32px rgba(18, 19, 26, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.complete-process-section .process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227,98,6, .16);
  box-shadow: 0 24px 46px rgba(18, 19, 26, .10);
}

.complete-process-section .process-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(227,98,6, .16);
  background: #fff;
  color: #e36206;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  box-shadow: 0 10px 18px rgba(18, 19, 26, .04);
}

.complete-process-section .process-card.is-auto-active .process-badge {
  background: #e36206;
  border-color: #e36206;
  color: #fff;
  box-shadow:
    0 16px 28px rgba(227,98,6, .22),
    0 0 0 1px rgba(255, 255, 255, .12) inset;
}

.complete-process-section .process-media {
  position: relative;
  height: 210px;
  margin-bottom: 12px;
  border-radius: 22px;
  border: 1px solid rgba(227,98,6, .10);
  background:
    radial-gradient(circle at 20% 18%, rgba(227,98,6, .08), transparent 30%),
    radial-gradient(circle at 80% 82%, rgba(227,98,6, .05), transparent 26%),
    linear-gradient(180deg, #fff, #fffbf8);
  overflow: hidden;
}

.complete-process-section .process-lottie {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}

.complete-process-section .process-lottie svg {
  width: 100%;
  height: 100%;
}

.complete-process-section .process-lottie.is-loading .process-lottie-fallback,
.complete-process-section .process-lottie.is-failed .process-lottie-fallback {
  opacity: 1;
  visibility: visible;
}

.complete-process-section .process-lottie.is-ready .process-lottie-fallback {
  opacity: 0;
  visibility: hidden;
}

.complete-process-section .process-lottie-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 18%, rgba(227,98,6, .10), transparent 28%),
    radial-gradient(circle at 76% 82%, rgba(227,98,6, .06), transparent 26%),
    linear-gradient(180deg, #fff, #fffdfd);
  opacity: 1;
  visibility: visible;
  transition: opacity .24s ease, visibility .24s ease;
}

.complete-process-section .process-lottie-fallback::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, .08);
}

.complete-process-section .process-fallback-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 24px;
  border: 1px solid rgba(227,98,6, .14);
  background: #fff;
  color: #e36206;
  box-shadow: 0 14px 28px rgba(18, 19, 26, .05);
}

.complete-process-section .process-fallback-icon svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.complete-process-section .process-fallback-lines,
.complete-process-section .process-fallback-bars,
.complete-process-section .process-fallback-grid {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(170px, 76%);
  display: grid;
  gap: 8px;
}

.complete-process-section .process-fallback-lines i,
.complete-process-section .process-fallback-bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, .08), rgba(227,98,6, .18));
  border: 1px solid rgba(227,98,6, .08);
}

.complete-process-section .process-fallback-lines {
  bottom: 18px;
  width: min(150px, 68%);
}

.complete-process-section .process-fallback-lines i:nth-child(1) {
  width: 100%;
}

.complete-process-section .process-fallback-lines i:nth-child(2) {
  width: 76%;
}

.complete-process-section .process-fallback-bars i:nth-child(1) {
  width: 100%;
}

.complete-process-section .process-fallback-bars i:nth-child(2) {
  width: 86%;
}

.complete-process-section .process-fallback-bars i:nth-child(3) {
  width: 68%;
}

.complete-process-section .process-fallback-clock {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.4px solid #111827;
  background: #fff;
  animation: processSoftSpin 10s linear infinite;
}

.complete-process-section .process-fallback-clock::before,
.complete-process-section .process-fallback-clock::after,
.complete-process-section .process-fallback-check::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #111827;
  border-radius: 999px;
  transform-origin: left center;
}

.complete-process-section .process-fallback-clock::before {
  width: 5px;
  height: 1.5px;
  transform: translate(-1px, -1px) rotate(0deg);
}

.complete-process-section .process-fallback-clock::after {
  width: 1.5px;
  height: 5px;
  transform: translate(-1px, -5px) rotate(0deg);
}

.complete-process-section .process-fallback-check {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(227,98,6, .16);
  background: #fff;
  box-shadow: 0 10px 18px rgba(18, 19, 26, .04);
  animation: processPulseRing 2.8s ease-in-out infinite;
}

.complete-process-section .process-fallback-check::before {
  left: 6px;
  top: 3px;
  width: 7px;
  height: 10px;
  border-right: 1.8px solid #e36206;
  border-bottom: 1.8px solid #e36206;
  transform: rotate(45deg);
}

.complete-process-section .process-fallback-notice,
.complete-process-section .process-fallback-pulse {
  position: absolute;
  border-radius: 50%;
  background: #e36206;
  box-shadow: 0 0 0 6px rgba(227,98,6, .08);
}

.complete-process-section .process-fallback-notice {
  right: 26px;
  top: 20px;
  width: 8px;
  height: 8px;
  animation: processPulseDot 3s ease-in-out infinite;
}

.complete-process-section .process-fallback-pulse {
  width: 6px;
  height: 6px;
  animation: processPulseDot 3.1s ease-in-out infinite;
}

.complete-process-section .process-fallback-pulse.pulse-one {
  right: 20px;
  top: 26px;
}

.complete-process-section .process-fallback-pulse.pulse-two {
  left: 22px;
  bottom: 24px;
  animation-delay: -1.4s;
}

.complete-process-section .process-fallback-grid {
  width: min(176px, 78%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.complete-process-section .process-fallback-grid::before,
.complete-process-section .process-fallback-grid::after {
  content: "";
  display: block;
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(227,98,6, .10);
  background:
    linear-gradient(180deg, rgba(17, 24, 39, .03), rgba(17, 24, 39, .08));
}

.complete-process-section .process-fallback-tool {
  position: absolute;
  right: 16px;
  top: 18px;
  width: 26px;
  height: 6px;
  border-radius: 999px;
  background: #111827;
  transform: rotate(-22deg);
  animation: processSoftSpin 12s linear infinite;
}

.complete-process-section .process-fallback-tool::before,
.complete-process-section .process-fallback-tool::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid #111827;
  background: #fff;
}

.complete-process-section .process-fallback-tool::before {
  left: -7px;
  top: -3px;
  width: 10px;
  height: 10px;
}

.complete-process-section .process-fallback-tool::after {
  right: -8px;
  top: -1px;
  width: 7px;
  height: 7px;
}

.complete-process-section .process-card h3 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 950;
}

.complete-process-section .process-card p {
  margin: 10px 0 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 650;
}

.complete-process-section .complete-process-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(227,98,6, .10);
  background: linear-gradient(180deg, #fff, #fcfcfd);
  box-shadow: 0 12px 28px rgba(18, 19, 26, .04);
}

.complete-process-section .complete-process-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 4px;
}

.complete-process-section .complete-process-trust-item i {
  width: 14px;
  height: 2px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #e36206;
}

.complete-process-section .complete-process-trust-item strong {
  display: block;
  color: #111827;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 950;
}

.complete-process-section .complete-process-trust-item span {
  display: block;
  margin-top: 4px;
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}

@keyframes processConnectorTravel {
  0% { left: 10%; }
  100% { left: calc(90% - 7px); }
}

@keyframes processConnectorBreath {
  0%, 100% { transform: scale(.84); opacity: .34; }
  50% { transform: scale(1.12); opacity: .7; }
}

@keyframes processPulseRing {
  0%, 100% { transform: scale(.88); opacity: .34; }
  50% { transform: scale(1.12); opacity: .72; }
}

@keyframes processPulseDot {
  0%, 100% { transform: scale(.92); opacity: .66; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes processSoftSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .complete-process-section .process-stage {
    display: none;
  }

  .complete-process-section .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .complete-process-section .complete-process-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .complete-process-section .process-media {
    height: 196px;
  }
}

@media (max-width: 760px) {
  .complete-process-section {
    padding: 72px 0 66px;
  }

  .complete-process-section .complete-process-head {
    margin-bottom: 22px;
  }

  .complete-process-section .complete-process-head h2 {
    font-size: clamp(34px, 9.5vw, 48px);
  }

  .complete-process-section .complete-process-head p {
    font-size: 15px;
  }

  .complete-process-section .process-grid,
  .complete-process-section .complete-process-trust {
    grid-template-columns: 1fr;
  }

  .complete-process-section .process-card {
    padding: 56px 18px 18px;
  }

  .complete-process-section .process-media {
    height: 182px;
  }

  .complete-process-section .process-lottie-fallback::before {
    inset: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .complete-process-section .process-connector-pulse,
  .complete-process-section .process-connector-pulse::before,
  .complete-process-section .process-fallback-pulse,
  .complete-process-section .process-fallback-notice,
  .complete-process-section .process-fallback-clock,
  .complete-process-section .process-fallback-check,
  .complete-process-section .process-fallback-tool {
    animation: none !important;
  }

  .complete-process-section .process-card:hover,
  .complete-process-section .process-card:hover .process-media {
    transform: none !important;
  }
}

/* Complete Process: premium corporate placeholder refresh */
.complete-process-section {
  padding: 86px 0 76px;
  background: linear-gradient(180deg, #fff, #fbfbfc);
}

.complete-process-section .complete-process-head {
  max-width: 860px;
  margin-bottom: 24px;
}

.complete-process-section .complete-process-head h2 {
  font-size: clamp(40px, 4vw, 62px);
}

.complete-process-section .complete-process-head p {
  max-width: 760px;
  font-size: 17px;
}

.complete-process-section .complete-process-stage {
  position: relative;
  height: 20px;
  margin: 2px auto 14px;
  max-width: 1140px;
}

.complete-process-section .complete-process-connector {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 9px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(227,98,6, 0), rgba(227,98,6, .28) 14%, rgba(227,98,6, .28) 86%, rgba(227,98,6, 0));
}

.complete-process-section .complete-process-pulse {
  position: absolute;
  left: 10%;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e36206;
  box-shadow: 0 0 0 7px rgba(227,98,6, .08);
  animation: completeProcessLineTravel 10s linear infinite;
}

.complete-process-section .complete-process-pulse::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(227,98,6, .16);
  animation: completeProcessPulseRing 2.8s ease-in-out infinite;
}

.complete-process-section .complete-process-grid {
  gap: 16px;
}

.complete-process-section .complete-process-card {
  padding: 60px 22px 20px;
  border-radius: 26px;
  border: 1px solid rgba(227,98,6, .10);
  box-shadow: 0 14px 34px rgba(18, 19, 26, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.complete-process-section .complete-process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227,98,6, .16);
  box-shadow: 0 24px 46px rgba(18, 19, 26, .10);
}

.complete-process-section .complete-process-card:hover .complete-process-media {
  transform: scale(1.02);
}

.complete-process-section .complete-process-badge {
  top: 18px;
  left: 18px;
}

.complete-process-section .complete-process-media {
  position: relative;
  height: 112px;
  margin-bottom: 12px;
  border-radius: 22px;
  border: 1px solid rgba(227,98,6, .10);
  background: linear-gradient(180deg, #fff, #fffbf8);
  overflow: hidden;
}

.complete-process-section .complete-process-panel {
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, .08);
  background:
    radial-gradient(circle at 18% 18%, rgba(227,98,6, .08), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(227,98,6, .06), transparent 30%),
    linear-gradient(180deg, #fff, #fffdfd);
  overflow: hidden;
}

.complete-process-section .complete-process-glow {
  position: absolute;
  border-radius: 50%;
  background: rgba(227,98,6, .08);
  filter: blur(2px);
  animation: completeProcessBreath 4.2s ease-in-out infinite;
}

.complete-process-section .glow-a {
  width: 72px;
  height: 72px;
  left: -24px;
  top: -18px;
}

.complete-process-section .glow-b {
  width: 52px;
  height: 52px;
  right: -16px;
  bottom: -14px;
  animation-delay: -1.2s;
}

.complete-process-section .process-panel-top {
  position: absolute;
  inset: 12px 12px auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.complete-process-section .process-icon-circle {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(227,98,6, .16);
  background: #fff;
  color: #e36206;
  box-shadow: 0 10px 22px rgba(18, 19, 26, .05);
}

.complete-process-section .process-icon-circle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.complete-process-section .process-panel-copy strong {
  display: block;
  color: #111827;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 950;
}

.complete-process-section .process-panel-copy span {
  display: block;
  margin-top: 3px;
  color: #667085;
  font-size: 12px;
  font-weight: 650;
}

.complete-process-section .process-lottie-shell {
  position: absolute;
  inset: 48px 12px 12px;
  border-radius: 16px;
  overflow: hidden;
}

.complete-process-section .process-lottie-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.18), transparent 32%);
  pointer-events: none;
}

.complete-process-section .process-lottie-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 24% 22%, rgba(227,98,6, .05), transparent 18%), radial-gradient(circle at 80% 78%, rgba(227,98,6, .04), transparent 20%);
  pointer-events: none;
}

.complete-process-section .process-lottie-contact .process-lottie-monitor {
  position: absolute;
  left: 50%;
  top: 3px;
  width: 82px;
  height: 38px;
  transform: translateX(-50%);
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, .10);
  background: linear-gradient(180deg, #fff, #fafafb);
  box-shadow: 0 12px 24px rgba(18, 19, 26, .05);
}

.complete-process-section .process-lottie-contact .process-lottie-monitor::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(227,98,6, .12), rgba(227,98,6, .5), rgba(227,98,6, .12));
}

.complete-process-section .process-lottie-contact .process-lottie-monitor::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(17, 24, 39, .08);
}

.complete-process-section .process-lottie-monitor-base {
  position: absolute;
  left: 50%;
  top: 44px;
  width: 32px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(17, 24, 39, .78);
}

.complete-process-section .process-lottie-chat {
  position: absolute;
  display: block;
  border: 1px solid rgba(227,98,6, .14);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 18px rgba(18, 19, 26, .04);
  animation: completeProcessFloat 4s ease-in-out infinite;
}

.complete-process-section .process-lottie-chat i,
.complete-process-section .process-lottie-chat em {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.complete-process-section .process-lottie-chat i {
  width: 7px;
  height: 7px;
  left: 8px;
  top: 6px;
  border: 1.4px solid #e36206;
}

.complete-process-section .process-lottie-chat em {
  left: 19px;
  right: 10px;
  top: 8px;
  height: 2px;
  background: rgba(17, 24, 39, .14);
}

.complete-process-section .process-lottie-contact .chat-a {
  left: 13px;
  top: 44px;
  width: 54px;
  height: 22px;
}

.complete-process-section .process-lottie-contact .chat-b {
  right: 12px;
  top: 18px;
  width: 48px;
  height: 20px;
  animation-delay: -1.2s;
}

.complete-process-section .process-lottie-phone {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(227,98,6, .16);
  background:
    linear-gradient(135deg, #fff 0 38%, rgba(227,98,6, .08) 38% 100%);
  box-shadow: 0 10px 18px rgba(18, 19, 26, .04);
}

.complete-process-section .process-lottie-phone::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 7px;
  height: 9px;
  border-radius: 3px;
  border: 1.4px solid #e36206;
}

.complete-process-section .process-lottie-pulse {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e36206;
  box-shadow: 0 0 0 6px rgba(227,98,6, .08);
  animation: completeProcessPulseDot 3s ease-in-out infinite;
}

.complete-process-section .pulse-a {
  left: 54px;
  top: 18px;
}

.complete-process-section .pulse-b {
  right: 24px;
  bottom: 30px;
  animation-delay: -1.5s;
}

.complete-process-section .process-lottie-dashboard {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17, 24, 39, .08), rgba(17, 24, 39, .04));
  overflow: hidden;
}

.complete-process-section .process-lottie-dashboard::after {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e36206, rgba(227,98,6, .62));
  animation: completeProcessBar 3s ease-in-out infinite;
}

.complete-process-section .dashboard-a {
  top: 8px;
}

.complete-process-section .dashboard-a::after {
  width: 72%;
}

.complete-process-section .dashboard-b {
  top: 24px;
}

.complete-process-section .dashboard-b::after {
  width: 84%;
}

.complete-process-section .process-lottie-checklist {
  position: absolute;
  left: 12px;
  right: 60px;
  bottom: 10px;
  display: grid;
  gap: 6px;
}

.complete-process-section .process-lottie-checklist em {
  display: block;
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #fff 0 18px, rgba(17, 24, 39, .08) 18px 100%);
  border: 1px solid rgba(227,98,6, .10);
}

.complete-process-section .process-lottie-gear {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #111827;
  box-shadow:
    0 -8px 0 -6px #111827,
    0 8px 0 -6px #111827,
    8px 0 0 -6px #111827,
    -8px 0 0 -6px #111827;
  animation: completeProcessSpin 10s linear infinite;
}

.complete-process-section .process-lottie-progress {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  height: 3px;
  border-radius: 999px;
  background: rgba(17, 24, 39, .08);
}

.complete-process-section .process-lottie-progress::before {
  content: "";
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e36206, rgba(227,98,6, .65));
  animation: completeProcessBar 3s ease-in-out infinite;
}

.complete-process-section .process-lottie-book .process-lottie-calendar {
  position: absolute;
  left: 50%;
  top: 4px;
  width: 86px;
  height: 44px;
  transform: translateX(-50%);
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, .10);
  background: linear-gradient(180deg, #fff, #fafafb);
  box-shadow: 0 12px 24px rgba(18, 19, 26, .05);
}

.complete-process-section .process-lottie-book .process-lottie-calendar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, #111827 0 14px, transparent 14px 100%),
    linear-gradient(90deg, transparent 0 33%, rgba(17, 24, 39, .08) 33% 34%, transparent 34% 66%, rgba(17, 24, 39, .08) 66% 67%, transparent 67% 100%);
}

.complete-process-section .process-lottie-book .process-lottie-calendar-top {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 62px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(227,98,6, .20), rgba(227,98,6, .70), rgba(227,98,6, .20));
}

.complete-process-section .process-lottie-book .process-lottie-clock {
  position: absolute;
  right: 16px;
  top: 22px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.4px solid #111827;
  background: #fff;
  animation: completeProcessSpin 10s linear infinite;
}

.complete-process-section .process-lottie-book .process-lottie-clock::before,
.complete-process-section .process-lottie-book .process-lottie-clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #111827;
  border-radius: 999px;
  transform-origin: left center;
}

.complete-process-section .process-lottie-book .process-lottie-clock::before {
  width: 5px;
  height: 1.5px;
  transform: translate(-1px, -1px) rotate(0deg);
}

.complete-process-section .process-lottie-book .process-lottie-clock::after {
  width: 1.5px;
  height: 5px;
  transform: translate(-1px, -5px) rotate(0deg);
}

.complete-process-section .process-lottie-book .process-lottie-check {
  position: absolute;
  left: 14px;
  bottom: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(227,98,6, .16);
  background: #fff;
  animation: completeProcessPulseRing 2.8s ease-in-out infinite;
}

.complete-process-section .process-lottie-book .process-lottie-check::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 7px;
  height: 9px;
  border-right: 1.8px solid #e36206;
  border-bottom: 1.8px solid #e36206;
  transform: rotate(45deg);
}

.complete-process-section .process-lottie-book .process-lottie-notification {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e36206;
  box-shadow: 0 0 0 6px rgba(227,98,6, .08);
  animation: completeProcessPulseDot 3s ease-in-out infinite;
}

.complete-process-section .process-lottie-service .process-lottie-solar {
  position: absolute;
  left: 10px;
  top: 8px;
  width: 74px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(17, 24, 39, .10);
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(255,255,255,.18) 49% 51%, transparent 51% 100%),
    linear-gradient(180deg, transparent 0 49%, rgba(255,255,255,.18) 49% 51%, transparent 51% 100%),
    linear-gradient(135deg, #111827, #2a2f39);
  box-shadow: 0 12px 24px rgba(18, 19, 26, .08);
}

.complete-process-section .process-lottie-service .solar-b {
  left: 28px;
  top: 18px;
  transform: rotate(-10deg);
  opacity: .96;
}

.complete-process-section .process-lottie-service .process-lottie-tool {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 26px;
  height: 6px;
  border-radius: 999px;
  background: #111827;
  transform: rotate(-22deg);
  animation: completeProcessSpin 12s linear infinite;
}

.complete-process-section .process-lottie-service .process-lottie-tool::before,
.complete-process-section .process-lottie-service .process-lottie-tool::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid #111827;
  background: #fff;
}

.complete-process-section .process-lottie-service .process-lottie-tool::before {
  left: -7px;
  top: -3px;
  width: 10px;
  height: 10px;
}

.complete-process-section .process-lottie-service .process-lottie-tool::after {
  right: -8px;
  top: -1px;
  width: 7px;
  height: 7px;
}

.complete-process-section .process-lottie-service .process-lottie-check {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(227,98,6, .16);
  background: #fff;
  animation: completeProcessPulseRing 2.8s ease-in-out infinite;
}

.complete-process-section .process-lottie-service .process-lottie-check::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 7px;
  height: 10px;
  border-right: 1.8px solid #e36206;
  border-bottom: 1.8px solid #e36206;
  transform: rotate(45deg);
}

.complete-process-section .process-lottie-service .process-lottie-energy {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 42px;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(227,98,6, .12), #e36206, rgba(227,98,6, .12));
  animation: completeProcessBar 3s ease-in-out infinite;
}

.complete-process-section .complete-process-trust {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(227,98,6, .10);
  background: linear-gradient(180deg, #fff, #fcfcfd);
  box-shadow: 0 12px 28px rgba(18, 19, 26, .04);
  gap: 12px;
}

.complete-process-section .complete-process-trust-item {
  padding: 6px 6px;
  gap: 10px;
}

.complete-process-section .complete-process-trust-item i {
  width: 14px;
  height: 2px;
  margin-top: 8px;
}

.complete-process-section .complete-process-trust-item strong {
  font-size: 15px;
}

.complete-process-section .complete-process-trust-item span {
  font-size: 13px;
}

@keyframes completeProcessLineTravel {
  0% { left: 10%; }
  100% { left: calc(90% - 7px); }
}

@keyframes completeProcessBreath {
  0%, 100% { opacity: .28; transform: scale(.96); }
  50% { opacity: .7; transform: scale(1.04); }
}

@keyframes completeProcessBar {
  0%, 100% { transform: translateX(0); opacity: .86; }
  50% { transform: translateX(4px); opacity: 1; }
}

@keyframes completeProcessSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes completeProcessPulseRing {
  0%, 100% { transform: scale(.86); opacity: .34; }
  50% { transform: scale(1.12); opacity: .72; }
}

@keyframes completeProcessPulseDot {
  0%, 100% { transform: scale(.92); opacity: .62; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes completeProcessFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@media (max-width: 1100px) {
  .complete-process-section .complete-process-stage {
    display: none;
  }

  .complete-process-section .complete-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .complete-process-section .complete-process-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .complete-process-section {
    padding: 72px 0 66px;
  }

  .complete-process-section .complete-process-head {
    margin-bottom: 22px;
  }

  .complete-process-section .complete-process-head h2 {
    font-size: clamp(34px, 9.5vw, 48px);
  }

  .complete-process-section .complete-process-head p {
    font-size: 15px;
  }

  .complete-process-section .complete-process-grid,
  .complete-process-section .complete-process-trust {
    grid-template-columns: 1fr;
  }

  .complete-process-section .complete-process-card {
    padding: 56px 18px 18px;
  }

  .complete-process-section .complete-process-media {
    height: 104px;
  }

  .complete-process-section .process-lottie-shell {
    inset: 44px 10px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .complete-process-section .complete-process-pulse,
  .complete-process-section .complete-process-pulse::before,
  .complete-process-section .complete-process-glow,
  .complete-process-section .process-lottie-gear,
  .complete-process-section .process-lottie-dashboard::after,
  .complete-process-section .process-lottie-progress::before,
  .complete-process-section .process-lottie-clock,
  .complete-process-section .process-lottie-notification,
  .complete-process-section .process-lottie-tool,
  .complete-process-section .process-lottie-energy,
  .complete-process-section .process-lottie-chat,
  .complete-process-section .process-lottie-pulse {
    animation: none !important;
  }

  .complete-process-section .complete-process-card:hover,
  .complete-process-section .complete-process-card:hover .complete-process-media {
    transform: none !important;
  }
}

/* Premium service detail refresh */
body.service-detail-page {
  --service-red: #e36206;
  --service-ink: #14151b;
  --service-text: #5f6674;
  --service-line: #e7ebf0;
  --service-surface: #fbfcfe;
  --service-shadow: 0 22px 60px rgba(18, 19, 26, .08);
}

body.service-detail-page .service-detail-main {
  overflow: clip;
}

body.service-detail-page .service-detail-main > .section {
  padding-top: clamp(76px, 8vw, 118px);
  padding-bottom: clamp(76px, 8vw, 118px);
}

body.service-detail-page .service-detail-main > .section:first-of-type {
  padding-top: 0;
  padding-bottom: 0;
}

body.service-detail-page .service-video-hero {
  min-height: clamp(620px, 76vh, 920px);
  align-items: center;
}

body.service-detail-page .service-hero-content {
  width: min(100% - clamp(28px, 5vw, 72px), 1480px);
  padding: clamp(120px, 14vw, 188px) 0 clamp(72px, 10vw, 112px);
}

body.service-detail-page .service-hero-copy {
  width: min(100%, 860px);
}

body.service-detail-page .service-hero-title {
  font-size: clamp(48px, 6vw, 86px);
  line-height: .92;
  max-width: 14ch;
}

body.service-detail-page .service-hero-text {
  max-width: 780px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.78;
}

body.service-detail-page .service-hero-actions .btn {
  min-width: 210px;
  padding: 16px 22px;
}

body.service-detail-page .service-trust-row span {
  min-height: 42px;
  padding: 0 15px;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
}

body.service-detail-page .service-overview-section {
  background: linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}

body.service-detail-page .service-overview-layout,
body.service-detail-page .service-inquiry-layout {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

body.service-detail-page .service-overview-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
}

body.service-detail-page .service-section-head h2,
body.service-detail-page .service-overview-copy h2,
body.service-detail-page .service-inquiry-copy h2,
body.service-detail-page .service-final-cta-card h2 {
  margin: 16px 0 0;
  color: var(--service-ink);
  font-size: clamp(34px, 3.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.06em;
}

body.service-detail-page .service-overview-copy .section-intro,
body.service-detail-page .service-inquiry-copy .section-intro,
body.service-detail-page .service-final-cta-card p,
body.service-detail-page .service-section-head .section-intro {
  margin-top: 16px;
  color: var(--service-text);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 650;
  max-width: 760px;
}

body.service-detail-page .service-overview-bullets {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

body.service-detail-page .service-overview-bullet {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  border: 1px solid var(--service-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 36px rgba(18, 19, 26, .05);
}

body.service-detail-page .service-overview-bullet-index {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  background: rgba(227,98,6, .10);
  color: var(--service-red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
}

body.service-detail-page .service-overview-bullet strong {
  display: block;
  color: var(--service-ink);
  font-size: 18px;
  line-height: 1.22;
  font-weight: 900;
}

body.service-detail-page .service-overview-bullet p {
  margin: 8px 0 0;
  color: var(--service-text);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 650;
}

body.service-detail-page .service-facts-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(227,98,6, .08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  box-shadow: var(--service-shadow);
}

body.service-detail-page .service-facts-card h3 {
  margin: 16px 0 0;
  color: var(--service-ink);
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.04em;
}

body.service-detail-page .service-facts-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

body.service-detail-page .service-facts-list div {
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  border-radius: 18px;
  background: #f9fafc;
  border: 1px solid #eceff4;
}

body.service-detail-page .service-facts-list dt {
  color: #7a818e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.service-detail-page .service-facts-list dd {
  margin: 0;
  color: #1f2027;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
}

body.service-detail-page .service-process-section {
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}

body.service-detail-page .service-process-shell {
  position: relative;
}

body.service-detail-page .service-timeline-shell {
  position: relative;
  margin-top: 30px;
}

body.service-detail-page .service-timeline-line {
  position: absolute;
  left: 72px;
  right: 72px;
  top: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(227,98,6, .12), rgba(227,98,6, .42), rgba(227,98,6, .12));
}

body.service-detail-page .service-timeline-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 24%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent 0%, rgba(227,98,6, .90) 50%, transparent 100%);
  box-shadow: 0 0 18px rgba(227,98,6, .22);
  animation: serviceTimelineFlow 10s linear infinite;
}

body.service-detail-page .service-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

body.service-detail-page .service-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 100%;
  padding: 24px 22px 22px;
  border: 1px solid var(--service-line);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(227,98,6, .06), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fcfdff 100%);
  box-shadow: 0 18px 44px rgba(18, 19, 26, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

body.service-detail-page .service-timeline-step:hover {
  transform: translateY(-5px);
  border-color: rgba(227,98,6, .18);
  box-shadow: 0 26px 64px rgba(18, 19, 26, .09);
}

body.service-detail-page .service-step-top {
  width: 100%;
  margin-bottom: 18px;
}

body.service-detail-page .service-step-number {
  min-width: 54px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(227,98,6, .10);
  color: var(--service-red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
}

body.service-detail-page .service-timeline-copy {
  display: grid;
  gap: 12px;
}

body.service-detail-page .service-timeline-copy h3 {
  margin: 0;
  color: #17171d;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -.04em;
}

body.service-detail-page .service-timeline-copy p {
  margin: 0;
  color: var(--service-text);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 650;
}

body.service-detail-page .service-faq-section {
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

body.service-detail-page .service-faq-shell {
  max-width: 1100px;
}

body.service-detail-page .service-faq-list {
  max-width: 100%;
  margin: 30px 0 0;
  display: grid;
  gap: 14px;
}

body.service-detail-page .service-faq-item {
  border: 1px solid var(--service-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 19, 26, .04);
  overflow: hidden;
}

body.service-detail-page .service-faq-item.open {
  border-color: rgba(227,98,6, .18);
  box-shadow: 0 20px 46px rgba(18, 19, 26, .08);
}

body.service-detail-page .service-faq-item .faq-toggle {
  width: 100%;
  min-height: 84px;
  padding: 22px 24px;
  background: transparent;
}

body.service-detail-page .service-faq-item .faq-toggle span:first-child {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 850;
  color: var(--service-ink);
}

body.service-detail-page .service-faq-item .faq-icon {
  width: 22px;
  height: 22px;
}

body.service-detail-page .service-faq-item .faq-icon i {
  background: var(--service-red);
  border-radius: 999px;
}

body.service-detail-page .service-faq-item .faq-panel {
  padding: 0 24px 22px;
}

body.service-detail-page .service-faq-item .faq-content p {
  max-width: 920px;
  color: var(--service-text);
  font-size: 16px;
  line-height: 1.76;
}

body.service-detail-page .service-inquiry-section {
  background: linear-gradient(180deg, #fbfcfe 0%, #fff 100%);
}

body.service-detail-page .service-inquiry-layout {
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
}

body.service-detail-page .service-inquiry-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

body.service-detail-page .service-inquiry-point {
  padding: 15px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--service-line);
  border-left: 3px solid var(--service-red);
  color: var(--service-ink);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(18, 19, 26, .05);
}

body.service-detail-page .service-inquiry-card {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(227,98,6, .06), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  box-shadow: 0 24px 66px rgba(18, 19, 26, .08);
}

body.service-detail-page .service-form-grid {
  gap: 16px 18px;
}

body.service-detail-page .service-form-field {
  display: grid;
  gap: 10px;
  min-width: 0;
}

body.service-detail-page .service-form-field label {
  color: var(--service-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.service-detail-page .service-form-field input,
body.service-detail-page .service-form-field select,
body.service-detail-page .service-form-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #dfe4eb;
  border-radius: 16px;
  background: #fafbfe;
  color: var(--service-ink);
  padding: 15px 16px;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

body.service-detail-page .service-form-field textarea {
  resize: vertical;
}

body.service-detail-page .service-form-field input:focus,
body.service-detail-page .service-form-field select:focus,
body.service-detail-page .service-form-field textarea:focus {
  outline: none;
  border-color: rgba(227,98,6, .55);
  box-shadow: 0 0 0 4px rgba(227,98,6, .10);
  background: #fff;
}

body.service-detail-page .service-form-field-full {
  grid-column: 1 / -1;
}

body.service-detail-page .service-form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

body.service-detail-page .service-form-submit .btn.primary {
  min-width: 210px;
  padding: 15px 24px;
}

body.service-detail-page .form-message {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
}

body.service-detail-page .form-note {
  margin: 0;
  color: #6b7180;
  font-size: 13px;
  line-height: 1.5;
}

body.service-detail-page .service-final-cta {
  background: linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}

body.service-detail-page .service-final-cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 60px);
  text-align: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(227,98,6, .18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, .08), transparent 28%),
    linear-gradient(180deg, #171820 0%, #0f1117 100%);
  box-shadow: 0 28px 80px rgba(18, 19, 26, .16);
}

body.service-detail-page .service-final-cta-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .08);
  pointer-events: none;
}

body.service-detail-page .service-final-cta-card h2 {
  color: #fff;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

body.service-detail-page .service-final-cta-card .service-section-kicker {
  color: #fff;
  background: rgba(227,98,6, .16);
  border-color: rgba(227,98,6, .24);
}

body.service-detail-page .service-final-cta-card p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, .76);
}

body.service-detail-page .service-final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

body.service-detail-page .service-final-cta-actions .btn {
  min-width: 210px;
  padding: 15px 22px;
}

@keyframes serviceTimelineFlow {
  from {
    transform: translateX(-8%);
  }

  to {
    transform: translateX(320%);
  }
}

@media (max-width: 1100px) {
  body.service-detail-page .service-video-hero {
    min-height: clamp(560px, 72vh, 860px);
  }

  body.service-detail-page .service-overview-layout,
  body.service-detail-page .service-inquiry-layout {
    grid-template-columns: 1fr;
  }

  body.service-detail-page .service-overview-layout {
    gap: 24px;
  }

  body.service-detail-page .service-overview-bullets {
    gap: 12px;
  }

  body.service-detail-page .service-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.service-detail-page .service-timeline-line {
    display: none;
  }

  body.service-detail-page .service-faq-shell {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  body.service-detail-page .service-detail-main > .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  body.service-detail-page .service-video-hero {
    min-height: auto;
  }

  body.service-detail-page .service-hero-content {
    width: min(100% - 20px, 1480px);
    padding: 102px 0 64px;
  }

  body.service-detail-page .service-hero-title {
    font-size: clamp(34px, 10vw, 48px);
    max-width: 12ch;
  }

  body.service-detail-page .service-hero-text,
  body.service-detail-page .service-section-head .section-intro,
  body.service-detail-page .service-overview-copy .section-intro,
  body.service-detail-page .service-inquiry-copy .section-intro,
  body.service-detail-page .service-final-cta-card p {
    font-size: 16px;
  }

  body.service-detail-page .service-overview-bullet {
    padding: 18px 18px 17px;
  }

  body.service-detail-page .service-overview-bullet strong {
    font-size: 17px;
  }

  body.service-detail-page .service-steps-grid,
  body.service-detail-page .service-overview-bullets,
  body.service-detail-page .service-inquiry-points,
  body.service-detail-page .service-form-grid {
    grid-template-columns: 1fr;
  }

  body.service-detail-page .service-timeline-shell {
    margin-top: 24px;
  }

  body.service-detail-page .service-timeline-line {
    display: block;
    left: 18px;
    right: auto;
    top: 16px;
    bottom: 16px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(227,98,6, .12), rgba(227,98,6, .42), rgba(227,98,6, .12));
  }

  body.service-detail-page .service-timeline-line::after {
    width: 100%;
    height: 22%;
    animation: serviceTimelineFlowVertical 10s linear infinite;
  }

  body.service-detail-page .service-timeline-step {
    padding: 22px 18px 18px 38px;
  }

  body.service-detail-page .service-step-top {
    margin-bottom: 14px;
  }

  body.service-detail-page .service-form-submit,
  body.service-detail-page .service-hero-actions,
  body.service-detail-page .service-final-cta-actions {
    align-items: stretch;
  }

  body.service-detail-page .service-final-cta-actions .btn,
  body.service-detail-page .service-hero-actions .btn,
  body.service-detail-page .service-form-submit .btn.primary {
    width: 100%;
  }
}

@keyframes serviceTimelineFlowVertical {
  from {
    transform: translateY(-8%);
  }

  to {
    transform: translateY(320%);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.service-detail-page .service-timeline-line::after,
  body.service-detail-page .service-timeline-step,
  body.service-detail-page .service-final-cta-card,
  body.service-detail-page .service-overview-bullet {
    animation: none !important;
    transition: none !important;
  }
}

body.service-detail-page .service-overview-layout {
  grid-template-columns: minmax(320px, .96fr) minmax(0, 1.04fr);
  align-items: center;
}

body.service-detail-page .service-overview-visual {
  margin: 0;
}

body.service-detail-page .service-overview-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(227,98,6, .12);
  background:
    radial-gradient(circle at top left, rgba(227,98,6, .10), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  box-shadow: 0 24px 70px rgba(18, 19, 26, .10);
  aspect-ratio: 4 / 3;
}

body.service-detail-page .service-overview-image {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

body.service-detail-page .service-overview-image[data-fit="contain"] {
  object-fit: contain;
  padding: 14px;
  background: #fff;
  transform: none;
}

body.service-detail-page .service-overview-copy {
  min-width: 0;
}

body.service-detail-page .service-overview-copy .service-facts-card {
  margin-top: 24px;
}

@media (max-width: 1100px) {
  body.service-detail-page .service-overview-layout {
    grid-template-columns: 1fr;
  }

  body.service-detail-page .service-overview-visual {
    order: -1;
  }

  body.service-detail-page .service-overview-image-frame {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
body.service-detail-page .service-overview-image-frame {
    border-radius: 26px;
  }

  body.service-detail-page .service-overview-copy .service-facts-card {
    margin-top: 20px;
  }
}

/* Service page width expansion */
body.service-detail-page .service-detail-main > .section > .container {
  width: 100%;
  max-width: none;
  padding-left: clamp(24px, 5vw, 96px);
  padding-right: clamp(24px, 5vw, 96px);
  box-sizing: border-box;
}

body.service-detail-page .service-overview-layout,
body.service-detail-page .service-process-shell,
body.service-detail-page .service-inquiry-layout {
  width: 100%;
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
}

body.service-detail-page .service-overview-layout {
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
}

body.service-detail-page .service-overview-visual {
  width: 100%;
  max-width: 640px;
}

body.service-detail-page .service-overview-image-frame,
body.service-detail-page .service-overview-visual .service-overview-bullets {
  width: 100%;
}

body.service-detail-page .service-faq-shell {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

body.service-detail-page .service-inquiry-layout {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

body.service-detail-page .service-final-cta > .container {
  width: 100%;
  max-width: 1280px;
}

@media (max-width: 1100px) {
  body.service-detail-page .service-detail-main > .section > .container {
    padding-left: clamp(20px, 4vw, 40px);
    padding-right: clamp(20px, 4vw, 40px);
  }

  body.service-detail-page .service-overview-layout,
  body.service-detail-page .service-process-shell,
  body.service-detail-page .service-inquiry-layout {
    max-width: 100%;
  }

  body.service-detail-page .service-overview-layout {
    grid-template-columns: 1fr;
  }

  body.service-detail-page .service-overview-visual {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  body.service-detail-page .service-detail-main > .section > .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.service-detail-page .service-faq-shell {
    max-width: 100%;
  }
}

body.service-detail-page .service-overview-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  grid-template-areas:
    "visual copy"
    "visual facts";
  align-items: start;
}

body.service-detail-page .service-overview-copy {
  grid-area: copy;
}

body.service-detail-page .service-overview-visual {
  grid-area: visual;
  display: grid;
  gap: 16px;
  min-width: 0;
}

body.service-detail-page .service-overview-image-frame {
  width: 100%;
}

body.service-detail-page .service-overview-visual .service-overview-bullets {
  margin-top: 0;
}

body.service-detail-page .service-facts-card {
  grid-area: facts;
  margin-top: 0;
}

@media (max-width: 1100px) {
  body.service-detail-page .service-overview-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "facts";
  }

  body.service-detail-page .service-overview-visual {
    order: 0;
  }
}

@media (max-width: 760px) {
  body.service-detail-page .service-overview-layout {
    gap: 22px;
  }

  body.service-detail-page .service-overview-visual {
    gap: 14px;
  }

  body.service-detail-page .service-overview-visual .service-overview-bullets {
    gap: 12px;
  }
}

/* Overview section hierarchy refresh */
body.service-detail-page .service-overview-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  grid-template-areas: "visual summary";
  align-items: start;
}

body.service-detail-page .service-overview-visual {
  grid-area: visual;
  gap: 16px;
  max-width: 640px;
}

body.service-detail-page .service-overview-summary {
  grid-area: summary;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(227,98,6, .12);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(227,98,6, .08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  box-shadow: 0 22px 60px rgba(18, 19, 26, .08);
}

body.service-detail-page .service-overview-summary .service-section-kicker {
  margin-bottom: 0;
}

body.service-detail-page .service-overview-summary h2 {
  margin: 0;
  color: var(--service-ink);
  font-size: clamp(34px, 3.25vw, 56px);
  line-height: 1.03;
  letter-spacing: -.06em;
}

body.service-detail-page .service-overview-summary-text {
  margin: 0;
  color: var(--service-text);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 650;
}

body.service-detail-page .service-overview-checklist {
  display: grid;
  gap: 12px;
  padding-top: 2px;
}

body.service-detail-page .service-overview-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #20222a;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 750;
}

body.service-detail-page .service-overview-check-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(227,98,6, .10);
  color: var(--service-red);
  font-size: 12px;
  font-weight: 950;
  margin-top: 1px;
}

body.service-detail-page .service-overview-facts-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}

body.service-detail-page .service-overview-facts-inline span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f5f7fa;
  border: 1px solid #e6ebf2;
  color: #4f5662;
  font-size: 13px;
  font-weight: 800;
}

body.service-detail-page .service-overview-summary .service-facts-card,
body.service-detail-page .service-overview-summary .service-facts-list {
  display: none;
}

@media (max-width: 1100px) {
  body.service-detail-page .service-overview-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "summary"
      "visual";
  }

  body.service-detail-page .service-overview-visual {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  body.service-detail-page .service-overview-layout {
    gap: 18px;
  }

  body.service-detail-page .service-overview-summary {
    padding: 24px 20px;
  }

  body.service-detail-page .service-overview-summary h2 {
    font-size: clamp(30px, 8.5vw, 42px);
  }

  body.service-detail-page .service-overview-summary-text {
    font-size: 16px;
  }

  body.service-detail-page .service-overview-check {
    font-size: 14px;
  }
}

/* Overview column height balance */
body.service-detail-page .service-overview-layout {
  align-items: stretch;
}

body.service-detail-page .service-overview-visual,
body.service-detail-page .service-overview-summary {
  height: 100%;
}

body.service-detail-page .service-overview-summary {
  display: flex;
  flex-direction: column;
}

body.service-detail-page .service-overview-checklist {
  flex: 1 1 auto;
}

body.service-detail-page .service-overview-facts-inline {
  margin-top: auto;
}

@media (max-width: 1100px) {
  body.service-detail-page .service-overview-layout {
    align-items: start;
  }

  body.service-detail-page .service-overview-visual,
  body.service-detail-page .service-overview-summary {
    height: auto;
  }

  body.service-detail-page .service-overview-summary {
    display: grid;
  }

  body.service-detail-page .service-overview-checklist {
    flex: initial;
  }

  body.service-detail-page .service-overview-facts-inline {
    margin-top: 0;
  }
}

/* Overview compact balance correction */
body.service-detail-page .service-overview-layout {
  align-items: start;
}

body.service-detail-page .service-overview-visual,
body.service-detail-page .service-overview-summary {
  height: auto;
  align-self: start;
}

body.service-detail-page .service-overview-summary {
  display: grid;
  gap: 20px;
  justify-content: start;
}

body.service-detail-page .service-overview-checklist {
  flex: none;
  gap: 12px;
  padding-top: 0;
}

body.service-detail-page .service-overview-check {
  gap: 10px;
}

body.service-detail-page .service-overview-facts-inline {
  margin-top: 4px;
  gap: 8px;
}

body.service-detail-page .service-overview-facts-inline span {
  min-height: 34px;
  padding: 0 12px;
}

@media (max-width: 1100px) {
  body.service-detail-page .service-overview-summary {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  body.service-detail-page .service-overview-summary {
    gap: 16px;
  }

  body.service-detail-page .service-overview-checklist {
    gap: 10px;
  }
}

/* Right-side summary panel: compact editorial flow */
body.service-detail-page .service-overview-layout {
  align-items: start !important;
}

body.service-detail-page .service-overview-summary {
  align-self: start !important;
  height: auto !important;
  padding: clamp(40px, 3.5vw, 52px) !important;
  gap: 24px !important;
  display: grid !important;
  justify-content: start !important;
}

body.service-detail-page .service-overview-summary-text {
  max-width: 64ch;
}

body.service-detail-page .service-overview-checklist {
  gap: 12px !important;
  padding-top: 2px !important;
}

body.service-detail-page .service-overview-check {
  gap: 10px !important;
}

body.service-detail-page .service-overview-workflow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 4px 0 0;
}

body.service-detail-page .service-overview-workflow-step {
  --overview-flow-delay: 0s;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(227,98,6, .14);
  background: #fff;
  color: #252730;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(18, 19, 26, .04);
}

body.service-detail-page .service-overview-workflow-step i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--service-red);
  box-shadow: 0 0 0 0 rgba(227,98,6, .22);
  animation: serviceOverviewPulse 4.5s ease-in-out infinite;
  animation-delay: calc(var(--overview-flow-delay) + (var(--i, 0) * .18s));
}

body.service-detail-page .service-overview-workflow-arrow {
  color: var(--service-red);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  opacity: .65;
}

body.service-detail-page .service-overview-facts-inline {
  margin-top: 0 !important;
  gap: 8px !important;
  padding-top: 0 !important;
}

body.service-detail-page .service-overview-facts-inline span {
  min-height: 34px;
  padding: 0 12px;
}

body.service-detail-page .service-overview-visual {
  align-self: start !important;
  height: auto !important;
}

@keyframes serviceOverviewPulse {
  0%, 100% {
    transform: translateX(0);
    box-shadow: 0 0 0 0 rgba(227,98,6, .18);
    opacity: .9;
  }
  50% {
    transform: translateX(1px);
    box-shadow: 0 0 0 8px rgba(227,98,6, 0);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  body.service-detail-page .service-overview-summary {
    padding: 34px 28px !important;
  }
}

@media (max-width: 760px) {
  body.service-detail-page .service-overview-summary {
    padding: 24px 20px !important;
    gap: 18px !important;
  }

  body.service-detail-page .service-overview-workflow {
    gap: 8px;
  }

  body.service-detail-page .service-overview-workflow-arrow {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.service-detail-page .service-overview-workflow-step i {
    animation: none !important;
  }
}

/* Service overview right panel: compact premium detail flow */
body.service-detail-page .service-overview-summary {
  align-self: start !important;
  height: auto !important;
  display: grid !important;
  align-content: start !important;
  justify-content: start !important;
  gap: clamp(18px, 1.8vw, 24px) !important;
  padding: clamp(42px, 3.6vw, 52px) !important;
  min-width: 0;
  overflow: visible;
}

body.service-detail-page .service-overview-summary .service-section-kicker,
body.service-detail-page .service-overview-summary h2,
body.service-detail-page .service-overview-summary-text {
  margin-bottom: 0;
}

body.service-detail-page .service-overview-summary-text {
  max-width: 62ch;
}

body.service-detail-page .service-overview-checklist {
  display: grid;
  gap: 12px !important;
  padding-top: 2px !important;
}

body.service-detail-page .service-overview-check {
  gap: 10px !important;
  line-height: 1.55;
}

body.service-detail-page .service-overview-workflow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  row-gap: 10px;
  padding: 2px 0 0;
  margin-top: 2px;
}

body.service-detail-page .service-overview-workflow-step {
  white-space: nowrap;
}

body.service-detail-page .service-overview-workflow-step i {
  animation-duration: 4.8s;
}

body.service-detail-page .service-overview-workflow-arrow {
  animation: serviceOverviewArrowPulse 4.8s ease-in-out infinite;
}

body.service-detail-page .service-overview-facts-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px !important;
  padding-top: 0 !important;
  margin-top: 2px !important;
}

body.service-detail-page .service-overview-facts-inline span {
  min-height: 32px;
  padding: 0 12px;
}

@keyframes serviceOverviewArrowPulse {
  0%, 100% {
    opacity: .45;
    transform: translateX(0);
  }
  50% {
    opacity: .85;
    transform: translateX(2px);
  }
}

@media (max-width: 1100px) {
  body.service-detail-page .service-overview-summary {
    padding: 34px 28px !important;
    gap: 18px !important;
  }
}

@media (max-width: 760px) {
  body.service-detail-page .service-overview-summary {
    padding: 24px 20px !important;
    gap: 16px !important;
  }

  body.service-detail-page .service-overview-workflow {
    gap: 8px;
  }

  body.service-detail-page .service-overview-workflow-arrow {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.service-detail-page .service-overview-workflow-step i,
  body.service-detail-page .service-overview-workflow-arrow {
    animation: none !important;
  }
}

/* Service overview right panel: premium editorial flow */
body.service-detail-page .service-overview-summary {
  gap: clamp(20px, 1.8vw, 26px) !important;
  padding: clamp(42px, 3.6vw, 52px) !important;
}

body.service-detail-page .service-overview-subsection {
  display: grid;
  gap: 14px;
  padding-top: 4px;
  border-top: 1px solid rgba(227,98,6, .08);
}

body.service-detail-page .service-overview-subhead {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--service-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

body.service-detail-page .service-overview-capabilities {
  display: grid;
  gap: 10px;
}

body.service-detail-page .service-overview-capability {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(227,98,6, .10);
  background: linear-gradient(180deg, #fff, #fcfcfd);
  box-shadow: 0 10px 26px rgba(18, 19, 26, .04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body.service-detail-page .service-overview-capability:hover {
  transform: translateY(-2px);
  border-color: rgba(227,98,6, .18);
  box-shadow: 0 16px 34px rgba(18, 19, 26, .08);
}

body.service-detail-page .service-overview-capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(227,98,6, .14);
  background: radial-gradient(circle at 35% 35%, rgba(227,98,6, .10), rgba(227,98,6, .04));
  color: var(--service-red);
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
}

body.service-detail-page .service-overview-capability:hover .service-overview-capability-icon {
  transform: scale(1.06);
}

body.service-detail-page .service-overview-capability-copy strong {
  display: block;
  color: var(--service-ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

body.service-detail-page .service-overview-capability-copy p {
  margin: 4px 0 0;
  color: var(--service-text);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

body.service-detail-page .service-overview-timeline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 2px;
}

body.service-detail-page .service-overview-timeline-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(227,98,6, .12);
  background: #fff;
  color: #262933;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(18, 19, 26, .04);
}

body.service-detail-page .service-overview-timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--service-red);
  box-shadow: 0 0 0 0 rgba(227,98,6, .20);
  animation: serviceOverviewNodePulse 4.8s ease-in-out infinite;
  animation-delay: calc(var(--reveal-delay, 0ms) + (var(--i, 0) * 80ms));
}

body.service-detail-page .service-overview-timeline-connector {
  flex: 1 1 20px;
  height: 1px;
  min-width: 16px;
  background: linear-gradient(90deg, rgba(227,98,6, .55), rgba(227,98,6, .12));
}

body.service-detail-page .service-overview-why-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.service-detail-page .service-overview-why-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #20222a;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

body.service-detail-page .service-overview-why-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(227,98,6, .10);
  color: var(--service-red);
  font-size: 12px;
  font-weight: 950;
}

body.service-detail-page .service-overview-facts-inline {
  gap: 8px !important;
  padding-top: 0 !important;
}

body.service-detail-page .service-overview-facts-inline span {
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
}

body.service-detail-page .service-overview-facts-inline i {
  font-style: normal;
  color: var(--service-red);
  font-size: 12px;
  line-height: 1;
}

@keyframes serviceOverviewNodePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(227,98,6, .18);
    opacity: .92;
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(227,98,6, 0);
    opacity: 1;
  }
}

body.service-detail-page .service-overview-capability,
body.service-detail-page .service-overview-why-item,
body.service-detail-page .service-overview-timeline-step {
  will-change: transform, box-shadow;
}

body.service-detail-page .service-overview-capability.reveal-on-scroll {
  --reveal-y: 16px;
}

body.service-detail-page .service-overview-why-item.reveal-on-scroll {
  --reveal-y: 14px;
}

body.service-detail-page .service-overview-timeline-step.reveal-on-scroll {
  --reveal-y: 12px;
}

@media (max-width: 760px) {
  body.service-detail-page .service-overview-summary {
    gap: 18px !important;
    padding: 24px 20px !important;
  }

  body.service-detail-page .service-overview-capability {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 14px 14px 12px;
  }

  body.service-detail-page .service-overview-capability-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  body.service-detail-page .service-overview-timeline {
    display: grid;
    gap: 10px;
  }

  body.service-detail-page .service-overview-timeline-connector {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.service-detail-page .service-overview-capability,
  body.service-detail-page .service-overview-why-item,
  body.service-detail-page .service-overview-timeline-step,
  body.service-detail-page .service-overview-capability-icon,
  body.service-detail-page .service-overview-timeline-dot {
    transition: none !important;
  }

  body.service-detail-page .service-overview-timeline-dot {
    animation: none !important;
  }
}

/* Service process premium workflow */
body.service-detail-page .service-process-section {
  background:
    radial-gradient(circle at top center, rgba(227,98,6, .02), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}

body.service-detail-page .service-process-header {
  display: grid;
  justify-items: start;
  gap: 0;
  max-width: 880px;
}

body.service-detail-page .service-process-header h2 {
  margin: 0;
}

body.service-detail-page .service-process-header .section-intro {
  max-width: 760px;
}

body.service-detail-page .service-workflow-shell {
  position: relative;
  margin-top: 34px;
  padding-top: 56px;
}

body.service-detail-page .service-workflow-track,
body.service-detail-page .service-workflow-pulse {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

body.service-detail-page .service-workflow-track {
  z-index: 0;
}

body.service-detail-page .service-workflow-track-line {
  fill: none;
  stroke: rgba(227,98,6, .26);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 7 14;
  animation: serviceWorkflowDash 26s linear infinite;
}

body.service-detail-page .service-workflow-pulse {
  z-index: 1;
}

body.service-detail-page .service-workflow-pulse-core {
  fill: #e36206;
  opacity: .95;
}

body.service-detail-page .service-workflow-icons.service-process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

body.service-detail-page .service-process-item {
  display: grid;
  gap: 14px;
  align-content: start;
  min-width: 0;
}

body.service-detail-page .service-process-icon {
  display: flex;
  justify-content: center;
  margin-bottom: -6px;
}

body.service-detail-page .service-process-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(227,98,6, .11), rgba(255, 255, 255, .96) 62%);
  border: 1px solid rgba(227,98,6, .14);
  box-shadow:
    0 12px 30px rgba(18, 19, 26, .05),
    0 0 0 6px rgba(227,98,6, .04);
  color: var(--service-red);
  transition: transform .18s ease, box-shadow .18s ease;
}

body.service-detail-page .service-process-icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.service-detail-page .service-process-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 250px;
  padding: 26px 22px 24px;
  border-radius: 26px;
  border: 1px solid #e6eaf0;
  background:
    radial-gradient(circle at top right, rgba(227,98,6, .05), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fcfcfd 100%);
  box-shadow: 0 18px 44px rgba(18, 19, 26, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

body.service-detail-page .service-process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227,98,6, .18);
  box-shadow: 0 26px 60px rgba(18, 19, 26, .10);
}

body.service-detail-page .service-process-card:hover .service-process-icon-circle {
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    0 14px 34px rgba(18, 19, 26, .06),
    0 0 0 8px rgba(227,98,6, .06);
}

body.service-detail-page .service-process-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 34px;
  width: fit-content;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(227,98,6, .10);
  color: var(--service-red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
}

body.service-detail-page .service-process-card-title {
  margin: 2px 0 0;
  color: #17171d;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -.04em;
}

body.service-detail-page .service-process-card-text {
  margin: 0;
  color: #666d79;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 650;
}

body.service-detail-page .service-process-card-accent {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: auto;
  border-radius: 999px;
  background: rgba(227,98,6, .42);
  transition: width .22s ease, background-color .22s ease, box-shadow .22s ease;
}

body.service-detail-page .service-process-card:hover .service-process-card-accent {
  width: 74px;
  background: rgba(227,98,6, .72);
  box-shadow: 0 0 16px rgba(227,98,6, .18);
}

@keyframes serviceWorkflowDash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -210;
  }
}

@media (max-width: 1199px) {
  body.service-detail-page .service-workflow-track,
  body.service-detail-page .service-workflow-pulse {
    display: none;
  }

  body.service-detail-page .service-workflow-shell {
    padding-top: 0;
  }

  body.service-detail-page .service-workflow-icons.service-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.service-detail-page .service-workflow-icons.service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.service-detail-page .service-workflow-icons.service-process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.service-detail-page .service-workflow-shell {
    margin-top: 24px;
  }

  body.service-detail-page .service-process-card {
    min-height: 0;
    padding: 22px 18px 20px;
  }

  body.service-detail-page .service-process-icon {
    margin-bottom: -2px;
  }

  body.service-detail-page .service-process-icon-circle {
    width: 58px;
    height: 58px;
  }
}

/* Services listing refresh */
body.services-page {
  background:
    radial-gradient(circle at top, rgba(227,98,6, .04), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
  overflow-x: clip;
}

body.services-page main {
  width: 100%;
}

body.services-page .services-page-main > section {
  width: 100%;
  box-sizing: border-box;
}

body.services-page .services-page-shell {
  width: min(1700px, calc(100% - 32px));
  margin: 0 auto;
  box-sizing: border-box;
}

body.services-page .services-page-hero {
  padding: 82px 0 18px;
}

body.services-page .services-page-intro {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

body.services-page .services-page-intro > * {
  position: relative;
  z-index: 1;
}

body.services-page .services-page-intro h1 {
  margin: 0;
  max-width: 100%;
  color: #16161d;
  font-size: clamp(32px, 4.2vw, 62px);
  line-height: .96;
  letter-spacing: -.075em;
}

body.services-page .services-page-intro p {
  max-width: 820px;
  margin: 18px auto 0;
  color: #5f6674;
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.55;
  font-weight: 650;
}

body.services-page .services-page-video-section {
  padding: 14px 0 0;
}

body.services-page .services-page-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: clamp(300px, 52vw, 620px);
  background: #101117;
  box-shadow: 0 26px 72px rgba(18, 19, 26, .14);
}

body.services-page .services-page-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.services-page .services-page-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 13, .20), rgba(8, 9, 13, .40)),
    linear-gradient(90deg, rgba(10, 11, 16, .18) 0%, rgba(10, 11, 16, .08) 50%, rgba(10, 11, 16, .20) 100%);
}

/* Image variant of the hero frame: fit the picture exactly — no crop, no dark bars */
body.services-page .services-page-video-frame.is-image {
  min-height: 0 !important;
  background: transparent;
}
body.services-page .services-page-video-frame.is-image .services-page-image-media {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  display: block;
}

body.services-page .services-page-overview {
  padding: 46px 0 104px;
}

body.services-page .services-page-overview-grid {
  display: grid;
  grid-template-columns: minmax(320px, .42fr) minmax(0, .58fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

body.services-page .services-page-image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #e7eaf0;
  box-shadow: 0 20px 54px rgba(18, 19, 26, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

body.services-page .services-page-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(18, 19, 26, .12);
}

body.services-page .services-page-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}

body.services-page .services-page-image-card:hover img {
  transform: scale(1.02);
}

body.services-page .services-page-copy {
  padding-top: 10px;
}

body.services-page .services-page-copy h2 {
  margin: 16px 0 0;
  max-width: 720px;
  color: #16161d;
  font-size: clamp(30px, 3.3vw, 54px);
  line-height: 1.03;
  letter-spacing: -.05em;
}

body.services-page .services-page-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #5f6674;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 650;
}

body.services-page .services-page-bullets {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  max-width: 620px;
}

body.services-page .services-page-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid #e7eaf0;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 14px 34px rgba(18, 19, 26, .04);
  color: #17171d;
  font-size: 16px;
  font-weight: 800;
}

body.services-page .services-page-bullet-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(227,98,6, .10);
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

body.services-page .services-page-cta {
  margin-top: 30px;
  min-width: 220px;
}

@media (max-width: 1040px) {
  body.services-page .services-page-shell {
    width: min(100% - 40px, 1700px);
  }

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

  body.services-page .services-page-image-card {
    max-width: 620px;
  }

  body.services-page .services-page-intro h1 {
    font-size: clamp(26px, 4.8vw, 44px);
  }
}

@media (max-width: 700px) {
  body.services-page .services-page-shell {
    width: min(100% - 28px, 1700px);
  }

  body.services-page .services-page-hero {
    padding: 48px 0 14px;
  }

  body.services-page .services-page-intro h1 {
    font-size: clamp(22px, 7.2vw, 30px);
    line-height: .98;
  }

  body.services-page .services-page-intro p {
    font-size: clamp(18px, 4.5vw, 20px);
  }

  body.services-page .services-page-video-frame {
    min-height: 300px;
    border-radius: 26px;
  }

  body.services-page .services-page-overview {
    padding: 34px 0 76px;
  }

  body.services-page .services-page-copy {
    padding-top: 0;
  }

  body.services-page .services-page-bullets li {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.service-detail-page .service-workflow-track-line,
  body.service-detail-page .service-process-card,
  body.service-detail-page .service-process-icon-circle,
  body.service-detail-page .service-process-card-accent {
    animation: none !important;
    transition: none !important;
  }

  body.service-detail-page .service-workflow-pulse {
    display: none !important;
  }
}

/* Services page reveal + support boxes */
body.services-page .design-support-services-section {
  padding: 14px 0 106px;
}

body.services-page .design-support-services-container {
  width: min(1700px, calc(100% - 32px));
  margin: 0 auto;
  box-sizing: border-box;
}

body.services-page .design-support-services-header {
  max-width: 860px;
}

body.services-page .design-support-services-header h2 {
  margin: 16px 0 0;
  color: #16161d;
  font-size: clamp(28px, 3.1vw, 48px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

body.services-page .design-support-services-header .section-intro {
  margin: 14px 0 0;
  color: #5f6674;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 650;
}

body.services-page .design-support-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
  align-items: stretch;
}

body.services-page .design-support-service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 26px 24px 24px;
  border-radius: 28px;
  border: 1px solid #e7eaf0;
  background:
    radial-gradient(circle at top left, rgba(227,98,6, .04), transparent 34%),
    linear-gradient(180deg, #fff, #fbfcfd);
  box-shadow: 0 18px 44px rgba(18, 19, 26, .06);
  transition:
    transform .24s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .24s cubic-bezier(0.22, 1, 0.36, 1),
    border-color .24s cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-y: 28px;
  --reveal-scale: .96;
  --reveal-duration: 800ms;
}

body.services-page .design-support-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227,98,6, .14);
  box-shadow: 0 28px 60px rgba(18, 19, 26, .10);
}

body.services-page .design-support-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: rgba(227,98,6, .08);
  border: 1px solid rgba(227,98,6, .14);
  box-shadow: 0 12px 26px rgba(227,98,6, .08);
  transition: transform .24s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .24s cubic-bezier(0.22, 1, 0.36, 1), background-color .24s cubic-bezier(0.22, 1, 0.36, 1);
}

body.services-page .design-support-service-icon svg {
  width: 28px;
  height: 28px;
  stroke: #e36206;
  fill: none;
}

body.services-page .design-support-service-card:hover .design-support-service-icon {
  transform: translateY(-1px);
  background: rgba(227,98,6, .11);
  box-shadow: 0 16px 34px rgba(227,98,6, .12);
}

body.services-page .design-support-service-title {
  margin: 0;
  color: #17171d;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.04em;
}

body.services-page .design-support-service-text {
  margin: 0;
  color: #5f6674;
  font-size: 16px;
  line-height: 1.78;
  font-weight: 650;
}

body.services-page .design-support-service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .02em;
}

body.services-page .design-support-service-link span {
  transition: transform .22s cubic-bezier(0.22, 1, 0.36, 1);
}

body.services-page .design-support-service-card:hover .design-support-service-link span {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  body.services-page .design-support-services-container {
    width: min(100% - 40px, 1700px);
  }

  body.services-page .design-support-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body.services-page .design-support-services-container {
    width: min(100% - 28px, 1700px);
  }

  body.services-page .design-support-services-section {
    padding: 8px 0 82px;
  }

  body.services-page .design-support-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.services-page .design-support-service-card {
    padding: 22px 20px 20px;
  }

  body.services-page .design-support-service-title {
    font-size: 20px;
  }

  body.services-page .design-support-service-text {
    font-size: 15px;
    line-height: 1.72;
  }
}

@media (max-width: 430px) {
  body.services-page .design-support-services-header h2 {
    font-size: clamp(24px, 7.8vw, 32px);
  }

  body.services-page .design-support-service-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.services-page .design-support-service-card,
  body.services-page .design-support-service-icon,
  body.services-page .design-support-service-link span {
    transition: none !important;
  }
}

body.services-page .design-support-services-header {
  display: none;
}

body.services-page .design-support-service-text,
body.services-page .design-support-service-link {
  display: none;
}

body.services-page .design-support-services-section {
  padding-top: 28px;
}

body.services-page .design-support-services-grid {
  justify-content: center;
}

body.services-page .design-support-service-card {
  align-items: center;
  justify-content: center;
  text-align: center;
}

body.services-page .design-support-service-card,
body.services-page .design-support-service-card:hover {
  transform: none;
  box-shadow: 0 18px 44px rgba(18, 19, 26, .06);
}

body.services-page .design-support-service-card:hover {
  border-color: #e7eaf0;
}

body.services-page .design-support-service-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
}

body.services-page .design-support-service-icon svg {
  width: 34px;
  height: 34px;
}

body.services-page .design-support-service-title {
  font-size: 28px;
  line-height: 1.1;
}

body.services-page .design-support-service-card:hover .design-support-service-icon {
  transform: none;
  background: rgba(227,98,6, .08);
  box-shadow: 0 12px 26px rgba(227,98,6, .08);
}

@media (max-width: 1024px) {
  body.services-page .design-support-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body.services-page .design-support-services-grid {
    grid-template-columns: 1fr;
  }

  body.services-page .design-support-service-card {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.services-page .design-support-service-card {
    animation: none !important;
    transform: none !important;
    box-shadow: 0 18px 44px rgba(18, 19, 26, .06) !important;
  }
}

/* Services card polish override */
body.services-page .design-support-services-grid {
  grid-template-columns: repeat(3, 300px);
  justify-content: center;
  gap: 32px;
}

body.services-page .design-support-service-card {
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 300px;
  height: 300px;
  aspect-ratio: 1 / 1;
  min-height: 300px;
  max-width: 300px;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid rgba(227,98,6, .12);
  background:
    radial-gradient(circle at 50% 12%, rgba(227,98,6, .10), transparent 24%),
    radial-gradient(circle at 50% 0%, rgba(227,98,6, .05), transparent 42%),
    linear-gradient(180deg, #fff, #fcfcfd);
  box-shadow:
    0 18px 44px rgba(18, 19, 26, .07),
    0 1px 0 rgba(255, 255, 255, .9) inset;
  overflow: hidden;
  will-change: transform, box-shadow, filter;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease;
}

body.services-page .design-support-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(227,98,6, .12), transparent 24%);
  opacity: .85;
  pointer-events: none;
}

body.services-page .design-support-service-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  border: 1px solid rgba(227,98,6, .14);
  background:
    radial-gradient(circle at 50% 50%, rgba(227,98,6, .16), rgba(227,98,6, .08) 58%, rgba(255, 255, 255, .95) 100%);
  box-shadow:
    0 16px 30px rgba(18, 19, 26, .08),
    0 0 0 8px rgba(227,98,6, .05);
  margin-bottom: 2px;
}

body.services-page .design-support-service-icon::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(227,98,6, .18), transparent 68%);
  filter: blur(6px);
  opacity: .9;
  z-index: -1;
}

body.services-page .design-support-service-icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
  object-position: center;
  fill: none;
}

body.services-page .design-support-service-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #17171d;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.045em;
}

body.services-page .design-support-service-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(227,98,6, .26), rgba(227,98,6, .92));
  box-shadow: 0 0 16px rgba(227,98,6, .18);
  transition: background-color .22s ease, box-shadow .22s ease, width .22s ease;
}

body.services-page .design-support-service-card:hover,
body.services-page .design-support-service-card:focus-within {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(227,98,6, .14);
  box-shadow:
    0 26px 56px rgba(18, 19, 26, .11),
    0 1px 0 rgba(255, 255, 255, .9) inset;
}

body.services-page .design-support-service-card:hover .design-support-service-icon,
body.services-page .design-support-service-card:focus-within .design-support-service-icon {
  box-shadow:
    0 18px 34px rgba(18, 19, 26, .10),
    0 0 0 10px rgba(227,98,6, .11);
}

body.services-page .design-support-service-card:hover .design-support-service-title::after,
body.services-page .design-support-service-card:focus-within .design-support-service-title::after {
  width: 52px;
  background: linear-gradient(90deg, rgba(227,98,6, .44), rgba(227,98,6, 1));
  box-shadow: 0 0 20px rgba(227,98,6, .22);
}

@media (max-width: 1024px) {
  body.services-page .design-support-services-grid {
    grid-template-columns: repeat(2, 300px);
    justify-content: center;
  }

  body.services-page .design-support-service-icon img {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 700px) {
  body.services-page .design-support-services-grid {
    grid-template-columns: 1fr;
  }

  body.services-page .design-support-service-card {
    width: min(100%, 300px);
    aspect-ratio: 1 / 1;
    height: 300px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  body.services-page .design-support-service-icon img {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.services-page .design-support-service-card {
    animation: none !important;
    transition: border-color 180ms ease, box-shadow 180ms ease !important;
  }

  body.services-page .design-support-service-card:hover,
  body.services-page .design-support-service-card:focus-within {
    transform: none !important;
  }

  body.services-page .design-support-service-title::after,
  body.services-page .design-support-service-icon,
  body.services-page .design-support-service-card,
  body.services-page .design-support-service-card:hover {
    transition: none !important;
  }
}

/* ===== All-services grid — 5 across on desktop, fluid, 3 on tablet, 2 on mobile ===== */
body.services-page .design-support-services-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: stretch;
  gap: 20px;
  width: min(1240px, 100%);
  margin-left: auto;
  margin-right: auto;
}
body.services-page .design-support-service-card {
  width: auto;
  max-width: none;
  height: auto;
  min-height: 200px;
  aspect-ratio: auto;
  gap: 14px;
  padding: 24px 14px;
}
body.services-page .design-support-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
}
body.services-page .design-support-service-icon svg {
  width: 32px;
  height: 32px;
  display: block;
  fill: #e36206;
}
body.services-page .design-support-service-title {
  font-size: 16px;
  line-height: 1.18;
  letter-spacing: -.02em;
}
@media (max-width: 1080px) {
  body.services-page .design-support-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  body.services-page .design-support-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  body.services-page .design-support-service-card {
    min-height: 168px;
    padding: 20px 10px;
    gap: 10px;
  }
  body.services-page .design-support-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }
  body.services-page .design-support-service-icon svg {
    width: 28px;
    height: 28px;
  }
  body.services-page .design-support-service-title {
    font-size: 13.5px;
  }
}

/* Design support journey */
body.services-page .design-support-journey {
  padding: clamp(28px, 4vw, 54px) 0;
  background: linear-gradient(180deg, #fff, #fffbf8);
}

body.services-page .design-support-journey-container {
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 36px);
}

body.services-page .design-support-journey-header {
  display: grid;
  gap: 8px;
  max-width: 860px;
  margin: 0 auto clamp(18px, 2.5vw, 28px);
  text-align: center;
}

body.services-page .design-support-journey-eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

body.services-page .design-support-journey-header h2 {
  margin: 0;
  color: #17171d;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.08;
  letter-spacing: -.05em;
}

body.services-page .design-support-journey-header p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

body.services-page .design-support-journey-steps {
  display: grid;
  width: min(100%, 896px);
  margin: 0 auto;
}

body.services-page .design-support-step {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  grid-template-areas: "content visual";
  justify-content: center;
  gap: 56px;
  align-items: center;
  padding: clamp(14px, 2vw, 24px) 0;
  border-top: 1px solid rgba(17, 24, 39, .08);
}

body.services-page .design-support-step:last-child {
  border-bottom: 1px solid rgba(17, 24, 39, .08);
}

body.services-page .design-support-step--reverse {
  grid-template-areas: "visual content";
}

body.services-page .design-support-step-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  min-height: 320px;
  height: 320px;
  justify-self: center;
  box-sizing: border-box;
  padding: 24px;
  border: 1px solid rgba(227,98,6, .10);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 250, 250, .96));
  box-shadow: 0 14px 34px rgba(18, 19, 26, .04);
}

body.services-page .design-support-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(227,98,6, .16);
  background: linear-gradient(180deg, #fff, #fffaf7);
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

body.services-page .design-support-step-title {
  margin: 0;
  color: #363b45;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.24;
  letter-spacing: .01em;
  font-weight: 650;
}

body.services-page .design-support-step-accent {
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(227,98,6, .25), rgba(227,98,6, .95));
  box-shadow: 0 0 16px rgba(227,98,6, .16);
}

body.services-page .design-support-step-visual {
  grid-area: visual;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  justify-self: center;
}

body.services-page .design-support-step-panel {
  position: relative;
  width: 420px;
  max-width: 100%;
  min-height: 320px;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid rgba(227,98,6, .14);
  background:
    radial-gradient(circle at 22% 18%, rgba(227,98,6, .09), transparent 26%),
    radial-gradient(circle at 78% 82%, rgba(227,98,6, .05), transparent 28%),
    linear-gradient(180deg, #fff, #fffdfd);
  box-shadow:
    0 24px 54px rgba(18, 19, 26, .08),
    0 1px 0 rgba(255, 255, 255, .92) inset;
  overflow: hidden;
}

body.services-page .service-journey-lottie {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: inherit;
}

body.services-page .service-journey-lottie svg {
  display: block;
  width: min(100%, 320px);
  height: auto;
  max-height: 240px;
}

body.services-page .service-journey-lottie.is-loading .service-journey-lottie-fallback,
body.services-page .service-journey-lottie.is-failed .service-journey-lottie-fallback {
  opacity: 1;
  visibility: visible;
}

body.services-page .service-journey-lottie.is-ready .service-journey-lottie-fallback {
  opacity: 0;
  visibility: hidden;
}

body.services-page .service-journey-lottie-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 18%, rgba(227,98,6, .10), transparent 28%),
    radial-gradient(circle at 76% 82%, rgba(227,98,6, .06), transparent 26%),
    linear-gradient(180deg, #fff, #fffdfd);
  opacity: 1;
  visibility: visible;
  transition: opacity .24s ease, visibility .24s ease;
}

body.services-page .service-journey-lottie-fallback::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, .08);
}

body.services-page .service-journey-lottie .process-fallback-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(227,98,6, .14);
  background: #fff;
  color: #e36206;
  box-shadow: 0 14px 28px rgba(18, 19, 26, .05);
}

body.services-page .service-journey-lottie .process-fallback-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@media (max-width: 1024px) {
  body.services-page .design-support-step {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
  }

  body.services-page .design-support-step-panel {
    width: 100%;
    max-width: 420px;
    min-height: 300px;
    padding: 24px;
  }

  body.services-page .service-journey-lottie svg {
    width: min(100%, 320px);
    max-height: 220px;
  }
}

@media (max-width: 900px) {
  body.services-page .design-support-step {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual";
  }

  body.services-page .design-support-step-content,
  body.services-page .design-support-step-visual,
  body.services-page .design-support-step--reverse .design-support-step-content,
  body.services-page .design-support-step--reverse .design-support-step-visual {
    grid-area: auto;
  }

  body.services-page .design-support-step-content {
    width: 100%;
    max-width: 420px;
    min-height: 180px;
    height: auto;
    justify-self: center;
  }

  body.services-page .design-support-step-panel {
    width: 100%;
    max-width: 420px;
    min-height: 240px;
    padding: 22px;
  }
}

@media (max-width: 640px) {
  body.services-page .design-support-journey-container {
    padding: 0 18px;
  }

  body.services-page .design-support-step {
    padding: 14px 0 18px;
  }

  body.services-page .design-support-step-panel {
    width: min(100%, 260px);
    min-height: 240px;
    padding: 22px;
    border-radius: 26px;
  }

  body.services-page .service-journey-lottie svg {
    width: min(100%, 220px);
    max-height: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.services-page .design-support-journey *,
  body.services-page .design-support-journey *::before,
  body.services-page .design-support-journey *::after {
    animation: none !important;
  }

  body.services-page .design-support-step,
  body.services-page .design-support-step-panel,
  body.services-page .service-journey-lottie,
  body.services-page .service-journey-lottie-fallback {
    transition: none !important;
  }
}

/* Design support inquiry */
body.services-page .design-support-inquiry {
  padding: clamp(40px, 5vw, 72px) 0 clamp(60px, 6vw, 96px);
  background: linear-gradient(180deg, #fff, #fff9fa);
}

body.services-page .design-support-inquiry-container {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 36px);
}

body.services-page .design-support-inquiry-header {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto clamp(24px, 3vw, 34px);
  text-align: center;
}

body.services-page .design-support-inquiry-eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

body.services-page .design-support-inquiry-header h2 {
  margin: 0;
  color: #17171d;
  font-size: clamp(24px, 2.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -.05em;
}

body.services-page .design-support-inquiry-header p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

body.services-page .design-support-form-card {
  position: relative;
  width: min(100%, 960px);
  margin: 0 auto;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 36px;
  border: 1px solid rgba(227,98,6, .12);
  background:
    radial-gradient(circle at 50% 0%, rgba(227,98,6, .08), transparent 24%),
    radial-gradient(circle at 20% 16%, rgba(227,98,6, .05), transparent 20%),
    linear-gradient(180deg, #fff, #fffdfd);
  box-shadow:
    0 28px 64px rgba(18, 19, 26, .08),
    0 1px 0 rgba(255, 255, 255, .92) inset;
  overflow: hidden;
}

body.services-page .design-support-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 8%, rgba(227,98,6, .10), transparent 28%);
  pointer-events: none;
}

body.services-page .design-support-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
}

body.services-page .design-support-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.services-page .design-support-field,
body.services-page .design-support-submit-row {
  display: grid;
  gap: 8px;
}

body.services-page .design-support-field-full {
  grid-column: 1 / -1;
}

body.services-page .design-support-field label {
  color: #2b2d35;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body.services-page .design-support-field input,
body.services-page .design-support-field select,
body.services-page .design-support-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, .10);
  border-radius: 18px;
  background: #fafafa;
  color: #17171d;
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  padding: 16px 18px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
  transition:
    border-color .22s ease,
    box-shadow .22s ease,
    background-color .22s ease,
    transform .22s ease;
}

body.services-page .design-support-field textarea {
  min-height: 150px;
  resize: vertical;
}

body.services-page .design-support-field input::placeholder,
body.services-page .design-support-field textarea::placeholder {
  color: #8b909d;
}

body.services-page .design-support-field input:focus,
body.services-page .design-support-field select:focus,
body.services-page .design-support-field textarea:focus {
  outline: none;
  border-color: rgba(227,98,6, .35);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(227,98,6, .10),
    0 12px 24px rgba(18, 19, 26, .04);
  transform: translateY(-1px);
}

body.services-page .design-support-submit-row {
  justify-items: start;
  gap: 10px;
}

body.services-page .design-support-submit {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 16px 28px;
  background: linear-gradient(180deg, #e36206, #bf5407);
  color: #fff;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: 0 16px 28px rgba(227,98,6, .18);
  cursor: pointer;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    filter .22s ease;
}

body.services-page .design-support-submit:hover,
body.services-page .design-support-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(227,98,6, .24);
  filter: brightness(1.02);
}

body.services-page .design-support-submit:focus-visible {
  outline: 3px solid rgba(227,98,6, .18);
  outline-offset: 3px;
}

body.services-page .design-support-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  body.services-page .design-support-form-card {
    width: min(100%, 90%);
    padding: 28px;
  }
}

@media (max-width: 700px) {
  body.services-page .design-support-form-card {
    width: 100%;
    padding: 22px;
    border-radius: 30px;
  }

  body.services-page .design-support-form-grid {
    grid-template-columns: 1fr;
  }

  body.services-page .design-support-submit-row {
    justify-items: stretch;
  }

  body.services-page .design-support-submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.services-page .design-support-inquiry *,
  body.services-page .design-support-inquiry *::before,
  body.services-page .design-support-inquiry *::after {
    animation: none !important;
  }

  body.services-page .design-support-form-card,
  body.services-page .design-support-field input,
  body.services-page .design-support-field select,
  body.services-page .design-support-field textarea,
  body.services-page .design-support-submit {
    transition: none !important;
  }
}

/* Services page responsive QA refinement */
body.services-page {
  overflow-x: hidden;
}

body.services-page .services-page-main,
body.services-page .services-page-main * {
  box-sizing: border-box;
  min-width: 0;
}

body.services-page .services-page-intro {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

body.services-page .services-page-intro h1 {
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(32px, 4.2vw, 62px);
  line-height: .96;
  letter-spacing: -.075em;
}

body.services-page .services-page-intro p {
  max-width: 820px;
  margin: 18px auto 0;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

@media (max-width: 1040px) {
  body.services-page .services-page-overview-grid {
    grid-template-columns: 1fr;
  }

  body.services-page .services-page-copy {
    order: 1;
  }

  body.services-page .services-page-image-card {
    order: 2;
    max-width: 620px;
  }
}

body.services-page .services-page-video-section {
  padding-top: 12px;
}

@media (max-width: 1040px) {
  body.services-page .services-page-intro h1 {
    font-size: clamp(26px, 4.8vw, 44px);
  }
}

@media (max-width: 700px) {
  body.services-page .services-page-hero {
    padding: 48px 0 14px;
  }

  body.services-page .services-page-intro h1 {
    font-size: clamp(22px, 7.2vw, 30px);
    line-height: .98;
  }

  body.services-page .services-page-intro p {
    font-size: clamp(18px, 4.5vw, 20px);
  }

  body.services-page .services-page-video-frame {
    min-height: clamp(220px, 56vw, 320px);
    border-radius: 24px;
  }

  body.services-page .services-page-overview {
    padding: 30px 0 68px;
  }
}

body.services-page .design-support-services-section {
  padding: 12px 0 92px;
}

body.services-page .design-support-services-container {
  width: min(100% - 32px, 1700px);
  margin: 0 auto;
  box-sizing: border-box;
}

body.services-page .design-support-services-header h2 {
  font-size: clamp(28px, 3.1vw, 48px);
  line-height: 1.06;
}

body.services-page .design-support-services-header .section-intro {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
}

body.services-page .design-support-services-grid {
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: center;
  gap: 32px;
  margin-top: 30px;
}

body.services-page .design-support-service-card {
  width: 300px;
  height: 300px;
  aspect-ratio: 1 / 1;
  max-width: 300px;
}

body.services-page .design-support-service-title {
  font-size: 24px;
}

@media (max-width: 1024px) {
  body.services-page .design-support-services-container {
    width: min(100% - 40px, 1700px);
  }

  body.services-page .design-support-services-grid {
    grid-template-columns: repeat(2, minmax(0, 300px));
    gap: 24px;
  }

  body.services-page .design-support-service-card--three {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 700px) {
  body.services-page .design-support-services-container {
    width: min(100% - 28px, 1700px);
  }

  body.services-page .design-support-services-section {
    padding: 8px 0 72px;
  }

  body.services-page .design-support-services-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  body.services-page .design-support-service-card {
    width: min(100%, clamp(250px, 86vw, 340px));
    max-width: 340px;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 22px;
  }

  body.services-page .design-support-service-icon {
    width: 68px;
    height: 68px;
  }

  body.services-page .design-support-service-icon img {
    width: 54px;
    height: 54px;
  }

  body.services-page .design-support-service-title {
    font-size: 24px;
    line-height: 1.08;
  }

  body.services-page .design-support-services-header h2 {
    font-size: clamp(24px, 7.8vw, 32px);
  }
}

@media (max-width: 390px) {
  body.services-page .design-support-services-grid {
    gap: 14px;
  }

  body.services-page .design-support-service-card {
    width: min(100%, clamp(240px, 88vw, 320px));
    padding: 20px;
  }

  body.services-page .design-support-service-icon {
    width: 64px;
    height: 64px;
  }

  body.services-page .design-support-service-icon img {
    width: 48px;
    height: 48px;
  }

  body.services-page .design-support-service-title {
    font-size: 22px;
  }
}

@media (hover: none), (pointer: coarse) {
  body.services-page .design-support-service-card:hover,
  body.services-page .design-support-service-card:focus-within {
    transform: none;
    box-shadow: 0 18px 44px rgba(18, 19, 26, .06);
  }
}

body.services-page .design-support-journey {
  padding: clamp(24px, 4vw, 48px) 0;
}

body.services-page .design-support-journey-container {
  width: min(100%, 1320px);
  padding: 0 clamp(16px, 3vw, 28px);
}

body.services-page .design-support-journey-header {
  max-width: 820px;
  margin: 0 auto clamp(18px, 2.5vw, 24px);
}

body.services-page .design-support-journey-header h2 {
  font-size: clamp(22px, 2.6vw, 36px);
}

body.services-page .design-support-journey-header p {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.65;
}

body.services-page .design-support-step {
  gap: clamp(40px, 5vw, 72px);
}

@media (max-width: 900px) {
  body.services-page .design-support-step {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual";
    gap: 24px;
    padding: 12px 0 16px;
    align-items: start;
  }

  body.services-page .design-support-step-content,
  body.services-page .design-support-step-visual,
  body.services-page .design-support-step--reverse .design-support-step-content,
  body.services-page .design-support-step--reverse .design-support-step-visual {
    grid-area: auto;
  }

  body.services-page .design-support-step-content {
    width: 100%;
    max-width: 420px;
    justify-self: center;
  }

  body.services-page .design-support-step-panel {
    width: min(100%, 420px);
    min-height: 260px;
    padding: 20px;
    justify-self: center;
  }

  body.services-page .service-journey-lottie svg {
    width: min(100%, 240px);
    max-height: 180px;
  }
}

@media (max-width: 640px) {
  body.services-page .design-support-step {
    gap: 18px;
  }

  body.services-page .design-support-step-panel {
    width: min(100%, 260px);
    min-height: 230px;
    padding: 18px;
  }

  body.services-page .service-journey-lottie svg {
    width: min(100%, 220px);
    max-height: 170px;
  }
}

@media (max-width: 390px) {
  body.services-page .design-support-step-panel {
    width: min(100%, 244px);
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.services-page .design-support-journey *,
  body.services-page .design-support-journey *::before,
  body.services-page .design-support-journey *::after,
  body.services-page .design-support-inquiry *,
  body.services-page .design-support-inquiry *::before,
  body.services-page .design-support-inquiry *::after,
  body.services-page .design-support-testimonials .testimonial-track {
    animation: none !important;
  }

  body.services-page .design-support-step,
  body.services-page .design-support-step-panel,
  body.services-page .service-journey-lottie,
  body.services-page .service-journey-lottie-fallback,
  body.services-page .design-support-form-card,
  body.services-page .design-support-field input,
  body.services-page .design-support-field select,
  body.services-page .design-support-field textarea,
  body.services-page .design-support-submit {
    transition: none !important;
  }
}

/* Final journey centering override */
@media (max-width: 900px) {
  body.services-page .design-support-step {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual";
    justify-items: center;
    text-align: left;
    gap: 22px;
    padding: 12px 0 16px;
  }

  body.services-page .design-support-step--reverse {
    grid-template-areas:
      "content"
      "visual";
  }

  body.services-page .design-support-step-content {
    grid-area: content;
    width: 100%;
    max-width: 420px;
    justify-self: center;
  }

  body.services-page .design-support-step-visual {
    grid-area: visual;
    width: 100%;
    max-width: 340px;
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  body.services-page .design-support-step-panel {
    width: 100%;
    max-width: 420px;
    height: 260px;
    min-height: 260px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body.services-page .service-journey-lottie,
  body.services-page .service-journey-lottie.process-lottie {
    width: 100%;
    max-width: 420px;
    height: 260px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body.services-page .service-journey-lottie svg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }
}

@media (max-width: 480px) {
  body.services-page .design-support-step-visual {
    max-width: 300px;
  }

  body.services-page .design-support-step-panel,
  body.services-page .service-journey-lottie,
  body.services-page .service-journey-lottie.process-lottie {
    max-width: 290px;
    height: 250px;
    min-height: 250px;
  }
}

@media (max-width: 360px) {
  body.services-page .design-support-step-visual {
    max-width: 260px;
  }

  body.services-page .design-support-step-panel,
  body.services-page .service-journey-lottie,
  body.services-page .service-journey-lottie.process-lottie {
    max-width: 260px;
    height: 230px;
    min-height: 230px;
  }
}

body.services-page .design-support-inquiry {
  padding: clamp(36px, 5vw, 68px) 0 clamp(52px, 6vw, 92px);
}

body.services-page .design-support-inquiry-container {
  width: min(100%, 1320px);
  padding: 0 clamp(16px, 3vw, 28px);
}

body.services-page .design-support-inquiry-header h2 {
  font-size: clamp(24px, 3vw, 44px);
}

body.services-page .design-support-inquiry-header p {
  max-width: 820px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
}

body.services-page .design-support-form-card {
  width: min(100%, 980px);
  padding: clamp(20px, 3vw, 34px);
  border-radius: clamp(28px, 3vw, 36px);
}

body.services-page .design-support-form {
  gap: 22px;
}

body.services-page .design-support-form-grid {
  gap: 16px;
}

body.services-page .design-support-field label {
  font-size: 11px;
}

body.services-page .design-support-field input,
body.services-page .design-support-field select,
body.services-page .design-support-field textarea {
  min-width: 0;
  font-size: 16px;
  padding: 15px 16px;
  border-radius: 16px;
}

body.services-page .design-support-form-note {
  text-align: center;
}

body.services-page .design-support-submit-row {
  justify-items: center;
}

body.services-page .design-support-submit {
  min-width: 220px;
}

@media (max-width: 700px) {
  body.services-page .design-support-inquiry {
    padding: 32px 0 80px;
  }

  body.services-page .design-support-inquiry-container {
    width: min(100% - 28px, 1320px);
  }

  body.services-page .design-support-form-card {
    width: 100%;
    padding: 18px;
    border-radius: 28px;
  }

  body.services-page .design-support-form-grid {
    grid-template-columns: 1fr;
  }

  body.services-page .design-support-submit-row {
    justify-items: stretch;
  }

  body.services-page .design-support-submit {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 390px) {
  body.services-page .design-support-form-card {
    padding: 16px;
  }

  body.services-page .design-support-field input,
  body.services-page .design-support-field select,
  body.services-page .design-support-field textarea {
    padding: 14px 14px;
  }
}

body.services-page .design-support-testimonials {
  padding: clamp(80px, 8vw, 112px) 0 clamp(88px, 8vw, 120px);
  overflow: hidden;
}

body.services-page .design-support-testimonials .testimonial-head-wrap {
  width: min(100%, 1180px);
  padding: 0 clamp(16px, 3vw, 28px);
}

body.services-page .design-support-testimonials .simple-center-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

body.services-page .design-support-testimonials .simple-center-head h2 {
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.08;
}

body.services-page .design-support-testimonials .simple-center-head p {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.65;
}

body.services-page .design-support-testimonials .testimonial-marquee-viewport {
  margin-top: 34px !important;
}

body.services-page .design-support-testimonials .testimonial-track {
  gap: 18px !important;
  padding-inline: 2px;
}

body.services-page .design-support-testimonials .testimonial-card {
  flex: 0 0 clamp(250px, 84vw, 388px) !important;
  width: clamp(250px, 84vw, 388px) !important;
  max-width: clamp(250px, 84vw, 388px) !important;
}

@media (max-width: 1024px) {
  body.services-page .design-support-testimonials .testimonial-track {
    gap: 16px !important;
  }

  body.services-page .design-support-testimonials .testimonial-card {
    flex-basis: clamp(260px, 42vw, 340px) !important;
    width: clamp(260px, 42vw, 340px) !important;
    max-width: clamp(260px, 42vw, 340px) !important;
  }
}

@media (max-width: 700px) {
  body.services-page .design-support-testimonials {
    padding: 72px 0 88px;
  }

  body.services-page .design-support-testimonials .testimonial-head-wrap {
    padding: 0 16px;
  }

  body.services-page .design-support-testimonials .testimonial-track {
    gap: 14px !important;
  }

  body.services-page .design-support-testimonials .testimonial-card {
    flex-basis: clamp(240px, 86vw, 320px) !important;
    width: clamp(240px, 86vw, 320px) !important;
    max-width: clamp(240px, 86vw, 320px) !important;
  }
}

@media (max-width: 390px) {
  body.services-page .design-support-testimonials .testimonial-card {
    flex-basis: clamp(228px, 88vw, 292px) !important;
    width: clamp(228px, 88vw, 292px) !important;
    max-width: clamp(228px, 88vw, 292px) !important;
  }
}

/* Services card mobile horizontal layout */
@media (max-width: 900px) {
  body.services-page .design-support-services-section {
    padding: 8px 0 72px;
  }

  body.services-page .design-support-services-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  body.services-page .design-support-service-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    width: min(100%, 380px);
    max-width: 380px;
    min-height: 84px;
    height: auto;
    padding: 20px;
    border-radius: 20px;
    text-align: left;
  }

  body.services-page .design-support-service-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    margin-bottom: 0;
  }

  body.services-page .design-support-service-icon img {
    width: 38px;
    height: 38px;
  }

  body.services-page .design-support-service-title {
    margin: 0;
    font-size: clamp(18px, 3.8vw, 22px);
    line-height: 1.12;
    letter-spacing: -.03em;
  }

  body.services-page .design-support-service-title::after {
    display: none;
  }

  body.services-page .design-support-service-card:hover,
  body.services-page .design-support-service-card:focus-within {
    transform: none;
    box-shadow: 0 18px 44px rgba(18, 19, 26, .06);
  }
}

@media (max-width: 768px) {
  body.services-page .design-support-service-card {
    width: min(100%, 360px);
    max-width: 360px;
    min-height: 80px;
    padding: 18px;
    gap: 16px;
  }

  body.services-page .design-support-service-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  body.services-page .design-support-service-icon img {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 480px) {
  body.services-page .design-support-service-card {
    width: min(100%, 340px);
    max-width: 340px;
    min-height: 74px;
    padding: 16px;
    gap: 14px;
  }

  body.services-page .design-support-service-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  body.services-page .design-support-service-icon img {
    width: 32px;
    height: 32px;
  }

  body.services-page .design-support-service-title {
    font-size: clamp(17px, 4.5vw, 20px);
  }
}

@media (max-width: 390px) {
  body.services-page .design-support-service-card {
    width: min(100%, 320px);
    max-width: 320px;
    min-height: 70px;
  }
}

@media (max-width: 360px) {
  body.services-page .design-support-service-card {
    width: min(100%, 300px);
    max-width: 300px;
    min-height: 66px;
    padding: 15px;
  }

  body.services-page .design-support-service-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  body.services-page .design-support-service-icon img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 320px) {
  body.services-page .design-support-service-card {
    width: min(100%, 286px);
    max-width: 286px;
  }
}

/* Homepage Mobile App six-card animation */
body.home-page .clean-app-features {
  max-width: 760px !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 22px !important;
}

body.home-page .clean-app-features > .clean-app-feature-card {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: center !important;
  min-height: 96px !important;
  padding: 14px !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .97) !important;
  border: 1px solid #e7eaf0 !important;
  box-shadow: 0 10px 22px rgba(18, 19, 26, .04) !important;
  transform: translate3d(0, 0, 0) !important;
  transform-origin: center center !important;
  will-change: transform, box-shadow, border-color !important;
  animation-name: appFeaturePulse !important;
  animation-duration: 6.6s !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  animation-fill-mode: both !important;
  animation-play-state: running !important;
}

body.home-page .clean-app-features > .clean-app-feature-card::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 38%, rgba(227,98,6, .24), rgba(227,98,6, 0) 62%);
  opacity: .18;
  filter: blur(12px);
  transform: scale(.98);
  z-index: 0;
  pointer-events: none;
  animation: appFeatureHalo 6.6s ease-in-out infinite !important;
}

body.home-page .clean-app-features > .clean-app-feature-card > * {
  position: relative;
  z-index: 1;
}

body.home-page .clean-app-features > .clean-app-feature-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(227,98,6, .20) !important;
  box-shadow: 0 14px 28px rgba(18, 19, 26, .06) !important;
}

body.home-page .clean-app-features > .clean-app-feature-card .app-feature-icon {
  width: 42px !important;
  height: 42px !important;
}

body.home-page .clean-app-features > .clean-app-feature-card .app-feature-icon svg {
  width: 20px !important;
  height: 20px !important;
}

body.home-page .clean-app-features > .clean-app-feature-card b {
  font-size: 13px !important;
  line-height: 1.14 !important;
  margin-bottom: 4px !important;
}

body.home-page .clean-app-features > .clean-app-feature-card p {
  font-size: 11.5px !important;
  line-height: 1.45 !important;
}

body.home-page .clean-app-features > .clean-app-feature-card:nth-child(1) { animation-delay: 0s !important; }
body.home-page .clean-app-features > .clean-app-feature-card:nth-child(2) { animation-delay: 1.1s !important; }
body.home-page .clean-app-features > .clean-app-feature-card:nth-child(3) { animation-delay: 2.2s !important; }
body.home-page .clean-app-features > .clean-app-feature-card:nth-child(4) { animation-delay: 3.3s !important; }
body.home-page .clean-app-features > .clean-app-feature-card:nth-child(5) { animation-delay: 4.4s !important; }
body.home-page .clean-app-features > .clean-app-feature-card:nth-child(6) { animation-delay: 5.5s !important; }

@keyframes appFeaturePulse {
  0%, 72%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    border-color: #e7eaf0;
    box-shadow: 0 10px 22px rgba(18, 19, 26, .04);
  }

  8%, 16% {
    transform: translate3d(0, -8px, 0) scale(1.03);
    border-color: rgba(227,98,6, .24);
    box-shadow:
      0 18px 34px rgba(18, 19, 26, .09),
      0 0 0 1px rgba(227,98,6, .05);
  }
}

@keyframes appFeatureHalo {
  0%, 72%, 100% {
    opacity: .16;
    transform: scale(.98);
  }

  8%, 16% {
    opacity: .95;
    transform: scale(1.02);
  }
}

@media (max-width: 1100px) {
  body.home-page .clean-app-features {
    max-width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  body.home-page .clean-app-features {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    max-width: 100% !important;
  }

  body.home-page .clean-app-features > .clean-app-feature-card {
    grid-template-columns: 40px minmax(0, 1fr) !important;
    min-height: 82px !important;
    padding: 12px !important;
    gap: 10px !important;
    border-radius: 16px !important;
  }

  body.home-page .clean-app-features > .clean-app-feature-card .app-feature-icon {
    width: 40px !important;
    height: 40px !important;
  }

  body.home-page .clean-app-features > .clean-app-feature-card .app-feature-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  body.home-page .clean-app-features > .clean-app-feature-card b {
    font-size: 12.5px !important;
  }

  body.home-page .clean-app-features > .clean-app-feature-card p {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 480px) {
  body.home-page .clean-app-features > .clean-app-feature-card {
    min-height: 76px !important;
    padding: 11px !important;
    gap: 10px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .clean-app-features > .clean-app-feature-card,
  body.home-page .clean-app-features > .clean-app-feature-card::before {
    animation: none !important;
    transform: none !important;
  }
}

/* Mobile App reveal-gated autoplay */
body.home-page .clean-app-section .clean-app-features > .clean-app-feature-card:not(.is-revealed) {
  animation: none !important;
}

body.home-page .clean-app-section .clean-app-features > .clean-app-feature-card.is-revealed {
  animation-name: mobileAppFeaturePulse !important;
  animation-duration: 8.4s !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  animation-fill-mode: both !important;
  animation-play-state: running !important;
}

body.home-page .clean-app-section .clean-app-features > .clean-app-feature-card.is-revealed::before {
  animation: mobileAppFeatureHalo 8.4s ease-in-out infinite !important;
}

body.home-page .clean-app-section .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(1) { animation-delay: 0s !important; }
body.home-page .clean-app-section .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(2) { animation-delay: 1.2s !important; }
body.home-page .clean-app-section .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(3) { animation-delay: 2.4s !important; }
body.home-page .clean-app-section .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(4) { animation-delay: 3.6s !important; }
body.home-page .clean-app-section .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(5) { animation-delay: 4.8s !important; }
body.home-page .clean-app-section .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(6) { animation-delay: 6s !important; }

@keyframes mobileAppFeaturePulse {
  0%, 74%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    border-color: #e7eaf0;
    box-shadow: 0 10px 22px rgba(18, 19, 26, .04);
  }

  10%, 18% {
    transform: translate3d(0, -6px, 0) scale(1.02);
    border-color: rgba(227,98,6, .24);
    box-shadow:
      0 16px 32px rgba(18, 19, 26, .08),
      0 0 0 1px rgba(227,98,6, .05);
  }
}

@keyframes mobileAppFeatureHalo {
  0%, 74%, 100% {
    opacity: .16;
    transform: scale(.98);
  }

  10%, 18% {
    opacity: .95;
    transform: scale(1.02);
  }
}

/* Homepage Mobile App inner-layer autoplay */
body.home-page .clean-app-features > .clean-app-feature-card {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  animation: none !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  justify-items: start;
  min-width: 0;
  transform: translate3d(0, 0, 0);
  will-change: transform, box-shadow, border-color, filter;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 38%, rgba(227,98,6, .26), rgba(227,98,6, 0) 62%);
  filter: blur(12px);
  opacity: .22;
  pointer-events: none;
}

body.home-page .clean-app-features > .clean-app-feature-card.is-revealed > .clean-app-feature-card-inner {
  animation: mobileAppCardAutoPulse 8.4s cubic-bezier(0.22, 1, 0.36, 1) infinite !important;
  animation-fill-mode: both !important;
}

body.home-page .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(1) > .clean-app-feature-card-inner { animation-delay: 0s !important; }
body.home-page .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(2) > .clean-app-feature-card-inner { animation-delay: 1.2s !important; }
body.home-page .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(3) > .clean-app-feature-card-inner { animation-delay: 2.4s !important; }
body.home-page .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(4) > .clean-app-feature-card-inner { animation-delay: 3.6s !important; }
body.home-page .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(5) > .clean-app-feature-card-inner { animation-delay: 4.8s !important; }
body.home-page .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(6) > .clean-app-feature-card-inner { animation-delay: 6s !important; }

body.home-page .clean-app-features > .clean-app-feature-card-inner > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-card-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  gap: 0 !important;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner .app-feature-icon {
  width: 42px !important;
  height: 42px !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner .app-feature-icon svg {
  width: 20px !important;
  height: 20px !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner b {
  font-size: 13px !important;
  line-height: 1.14 !important;
  margin-bottom: 4px !important;
  writing-mode: horizontal-tb !important;
  white-space: normal !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner p {
  font-size: 11.5px !important;
  line-height: 1.45 !important;
  writing-mode: horizontal-tb !important;
  white-space: normal !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner .clean-app-feature-card-copy b,
body.home-page .clean-app-features > .clean-app-feature-card-inner .clean-app-feature-card-copy p {
  width: 100%;
  min-width: 0;
  display: block !important;
  text-align: left;
}

@keyframes mobileAppCardAutoPulse {
  0%, 12%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: drop-shadow(0 0 0 rgba(227,98,6, 0));
  }

  6% {
    transform: translate3d(0, -8px, 0) scale(1.03);
    filter: drop-shadow(0 20px 36px rgba(227,98,6, .20));
  }
}

@media (max-width: 1100px) {
  body.home-page .clean-app-features > .clean-app-feature-card-inner {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  body.home-page .clean-app-features > .clean-app-feature-card-inner {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
  }

  body.home-page .clean-app-features > .clean-app-feature-card-inner .app-feature-icon {
    width: 40px !important;
    height: 40px !important;
  }

  body.home-page .clean-app-features > .clean-app-feature-card-inner .app-feature-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 480px) {
  body.home-page .clean-app-features > .clean-app-feature-card-inner {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .clean-app-features > .clean-app-feature-card-inner {
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }

  body.home-page .clean-app-features > .clean-app-feature-card-inner::before {
    animation: none !important;
  }
}

/* Services cards compact mobile override */
@media (max-width: 900px) {
  body.services-page .design-support-service-card,
  body.services-page .design-support-service-card--one,
  body.services-page .design-support-service-card--two,
  body.services-page .design-support-service-card--three {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    width: min(100%, 380px) !important;
    max-width: 380px !important;
    height: auto !important;
    min-height: 78px !important;
    aspect-ratio: auto !important;
    padding: 16px 18px !important;
    border-radius: 20px !important;
    text-align: left !important;
  }

  body.services-page .design-support-service-icon {
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px !important;
    margin-bottom: 0 !important;
  }

  body.services-page .design-support-service-icon img {
    width: 30px !important;
    height: 30px !important;
  }

  body.services-page .design-support-service-title {
    font-size: clamp(17px, 4.6vw, 21px) !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }

  body.services-page .design-support-service-title::after {
    display: none !important;
  }
}

@media (max-width: 480px) {
  body.services-page .design-support-service-card,
  body.services-page .design-support-service-card--one,
  body.services-page .design-support-service-card--two,
  body.services-page .design-support-service-card--three {
    width: min(100%, 340px) !important;
    max-width: 340px !important;
    min-height: 72px !important;
    gap: 14px !important;
    padding: 14px 16px !important;
  }

  body.services-page .design-support-service-icon {
    width: 44px !important;
    height: 44px !important;
    flex-basis: 44px !important;
  }

  body.services-page .design-support-service-icon img {
    width: 28px !important;
    height: 28px !important;
  }
}

@media (max-width: 360px) {
  body.services-page .design-support-service-card,
  body.services-page .design-support-service-card--one,
  body.services-page .design-support-service-card--two,
  body.services-page .design-support-service-card--three {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    min-height: 68px !important;
    gap: 12px !important;
    padding: 12px 14px !important;
  }

  body.services-page .design-support-service-icon {
    width: 42px !important;
    height: 42px !important;
    flex-basis: 42px !important;
  }

  body.services-page .design-support-service-icon img {
    width: 26px !important;
    height: 26px !important;
  }

  body.services-page .design-support-service-title {
    font-size: 18px !important;
  }
}

/* Final homepage Mobile App card override */
body.home-page .clean-app-features > .clean-app-feature-card {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  animation: none !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner {
  width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 12px !important;
  transform-origin: center center !important;
  will-change: transform, box-shadow, border-color, filter !important;
}

body.home-page .clean-app-features > .clean-app-feature-card.is-revealed > .clean-app-feature-card-inner {
  animation: mobileAppCardAutoPulse 8.4s cubic-bezier(0.22, 1, 0.36, 1) infinite !important;
  animation-fill-mode: both !important;
}

body.home-page .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(1) > .clean-app-feature-card-inner { animation-delay: 0s !important; }
body.home-page .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(2) > .clean-app-feature-card-inner { animation-delay: 1.2s !important; }
body.home-page .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(3) > .clean-app-feature-card-inner { animation-delay: 2.4s !important; }
body.home-page .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(4) > .clean-app-feature-card-inner { animation-delay: 3.6s !important; }
body.home-page .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(5) > .clean-app-feature-card-inner { animation-delay: 4.8s !important; }
body.home-page .clean-app-features > .clean-app-feature-card.is-revealed:nth-child(6) > .clean-app-feature-card-inner { animation-delay: 6s !important; }

body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  min-width: 0 !important;
  width: 100% !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head b {
  display: block !important;
  min-width: 0 !important;
  margin: 0 !important;
  color: #111218 !important;
  font-size: 14px !important;
  line-height: 1.12 !important;
  font-weight: 950 !important;
  letter-spacing: -.03em !important;
  writing-mode: horizontal-tb !important;
  white-space: normal !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head .app-feature-icon {
  width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head .app-feature-icon svg {
  width: 20px !important;
  height: 20px !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner > p {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  color: #667085 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  font-weight: 750 !important;
  text-align: left !important;
  writing-mode: horizontal-tb !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

@keyframes mobileAppCardAutoPulse {
  0%, 14%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 10px 22px rgba(18, 19, 26, .04);
    filter: drop-shadow(0 0 0 rgba(227,98,6, 0));
  }

  6% {
    transform: translate3d(0, -8px, 0) scale(1.03);
    box-shadow:
      0 18px 34px rgba(18, 19, 26, .09),
      0 0 0 1px rgba(227,98,6, .05);
    filter: drop-shadow(0 18px 34px rgba(227,98,6, .18));
  }
}

@media (max-width: 700px) {
  body.home-page .clean-app-features > .clean-app-feature-card-inner {
    gap: 10px !important;
  }

  body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head {
    gap: 10px !important;
  }

  body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head b {
    font-size: 13px !important;
  }

  body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head .app-feature-icon {
    width: 40px !important;
    height: 40px !important;
    flex-basis: 40px !important;
  }

  body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head .app-feature-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  body.home-page .clean-app-features > .clean-app-feature-card-inner > p {
    font-size: 11px !important;
  }
}

@media (max-width: 360px) {
  body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head .app-feature-icon {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
  }

  body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head b {
    font-size: 12.5px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .clean-app-features > .clean-app-feature-card-inner {
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Flatten the Mobile App inner card so the outer card owns the visual shape */
body.home-page .clean-app-features > .clean-app-feature-card-inner {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner::before {
  content: none !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  align-items: center !important;
  column-gap: 18px !important;
  width: 100% !important;
  min-width: 0 !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head .app-feature-icon {
  grid-column: 1 !important;
  justify-self: start !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head b {
  grid-column: 2 !important;
  text-align: left !important;
  overflow-wrap: anywhere !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner > p {
  padding-right: 0 !important;
}

@media (max-width: 700px) {
  body.home-page .clean-app-features > .clean-app-feature-card-inner {
    gap: 8px !important;
  }

  body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head {
    grid-template-columns: 40px minmax(0, 1fr) !important;
    column-gap: 16px !important;
  }
}

@media (max-width: 360px) {
  body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    column-gap: 14px !important;
  }
}

/* Services detail section: centered text only */
body.services-page .services-page-overview {
  padding: 28px 0 72px;
}

body.services-page .services-page-overview-grid,
body.services-page .services-page-overview-single {
  display: block !important;
}

body.services-page .services-page-overview-grid {
  width: 98% !important;
  max-width: 98% !important;
  margin: 0 auto !important;
  padding: 0 clamp(16px, 3vw, 28px) !important;
  box-sizing: border-box !important;
}

body.services-page .services-page-image-card,
body.services-page .services-page-bullets,
body.services-page .services-page-cta {
  display: none !important;
}

body.services-page .services-page-copy {
  width: 98% !important;
  max-width: 98% !important;
  margin: 0 auto !important;
  text-align: center !important;
  position: relative;
  padding: clamp(32px, 5vw, 92px) clamp(18px, 4vw, 56px);
  border-radius: 30px;
  border-top: 1px solid rgba(227,98,6, .12);
  border-bottom: 1px solid rgba(227,98,6, .12);
  border-left: 1px solid rgba(227,98,6, .06);
  border-right: 1px solid rgba(227,98,6, .06);
  background:
    radial-gradient(circle at 50% 0%, rgba(227,98,6, .05), transparent 58%),
    linear-gradient(180deg, #fff 0%, #fffdfd 100%);
  box-shadow:
    0 18px 50px rgba(18, 19, 26, .03),
    0 1px 0 rgba(255, 255, 255, .9) inset;
  overflow: hidden;
}

body.services-page .services-page-copy::before {
  content: "";
  position: absolute;
  inset: 14px 18px auto 18px;
  height: 160px;
  border-radius: 24px;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(227,98,6, .05), transparent 70%);
  filter: blur(120px);
  opacity: .75;
}

body.services-page .services-page-kicker {
  display: block !important;
  margin: 0 auto 12px !important;
  text-align: center !important;
}

body.services-page .services-page-copy h2 {
  max-width: 980px !important;
  margin: 0 auto !important;
  font-size: clamp(24px, 2.8vw, 44px) !important;
  line-height: 1.08 !important;
  text-align: center !important;
}

body.services-page .services-page-copy p {
  max-width: 1100px !important;
  margin: 18px auto 0 !important;
  font-size: clamp(15px, 1.15vw, 18px) !important;
  line-height: 1.68 !important;
  text-align: center !important;
}

@media (max-width: 480px) {
  body.services-page .services-page-copy p {
    text-align: center !important;
  }
}

@media (max-width: 700px) {
  body.services-page .services-page-copy {
    padding: 28px 20px;
    border-radius: 24px;
  }

  body.services-page .services-page-copy::before {
    inset: 10px 12px auto 12px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  body.services-page .services-page-copy {
    padding: 24px 18px;
    border-radius: 22px;
  }
}

/* Services hero heading reflective sweep */
body.services-page .services-page-intro {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

body.services-page .services-page-intro > * {
  position: relative;
  z-index: 1;
}

body.services-page .services-hero-heading {
  display: inline-block;
  margin: 0;
}

body.services-page .services-hero-heading-text {
  display: inline-block;
  position: relative;
  color: #111111 !important;
  background: none !important;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #111111 !important;
  text-fill-color: #111111 !important;
}

body.services-page .services-hero-heading-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: block;
  width: 100%;
  height: 100%;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  white-space: inherit;
  background-image: linear-gradient(
    80deg,
    transparent 0%,
    transparent 43%,
    rgba(255, 255, 255, .96) 48%,
    rgba(255,151,77, .68) 50%,
    rgba(255, 255, 255, .96) 52%,
    transparent 57%,
    transparent 100%
  );
  background-size: 240% 100%;
  background-position: -170% center;
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: .9;
  animation-delay: -3s;
  animation: servicesHeroHeadingReflection 7s linear infinite;
  will-change: background-position;
}

@media (max-width: 700px) {
}

@keyframes servicesHeroHeadingReflection {
  0% {
    background-position: 170% center;
  }

  85.7% {
    background-position: -170% center;
  }

  100% {
    background-position: -170% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.services-page .services-hero-heading-text {
    animation: none !important;
    background-image: none !important;
    -webkit-text-fill-color: #111111 !important;
    color: #111111 !important;
  }

  body.services-page .services-hero-heading-text::after {
    animation: none !important;
    opacity: 0 !important;
  }

  body.services-page .services-page-intro::before {
    opacity: .5;
  }
}

/* Homepage complete process auto-focus loop */
body.home-page .complete-process-section .process-card {
  transform-origin: center center;
  will-change: transform, box-shadow, border-color, filter;
  transition:
    transform .85s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .85s cubic-bezier(0.22, 1, 0.36, 1),
    border-color .85s cubic-bezier(0.22, 1, 0.36, 1),
    filter .85s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-page .complete-process-section .process-card.is-auto-active {
  transform: translateY(-10px) scale(1.028);
  border-color: rgba(227,98,6, .24);
  box-shadow:
    0 32px 56px rgba(18, 19, 26, .12),
    0 12px 28px rgba(227,98,6, .08),
    0 0 0 1px rgba(227,98,6, .10);
  background:
    radial-gradient(circle at 20% 18%, rgba(227,98,6, .10), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(255,151,77, .07), transparent 28%),
    linear-gradient(180deg, #fff, #fffaf7);
  filter: saturate(1.06);
}

body.home-page .complete-process-section .process-card.is-auto-active .process-media {
  transform: scale(1.03);
  border-color: rgba(227,98,6, .22);
  box-shadow:
    0 18px 34px rgba(227,98,6, .11),
    inset 0 0 0 1px rgba(227,98,6, .05);
}

body.home-page .complete-process-section .process-card:hover {
  transform: translateY(-10px) scale(1.028);
  border-color: rgba(227,98,6, .24);
  box-shadow:
    0 32px 56px rgba(18, 19, 26, .12),
    0 12px 28px rgba(227,98,6, .08),
    0 0 0 1px rgba(227,98,6, .10);
  background:
    radial-gradient(circle at 20% 18%, rgba(227,98,6, .10), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(255,151,77, .07), transparent 28%),
    linear-gradient(180deg, #fff, #fffaf7);
  filter: saturate(1.06);
}

body.home-page .complete-process-section .process-card:hover .process-media {
  transform: scale(1.03);
}

body.home-page .complete-process-section .process-media {
  transition:
    transform .85s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .85s cubic-bezier(0.22, 1, 0.36, 1),
    border-color .85s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center center;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .complete-process-section .process-card,
  body.home-page .complete-process-section .process-card.is-auto-active,
  body.home-page .complete-process-section .process-card:hover,
  body.home-page .complete-process-section .process-card:hover .process-media,
  body.home-page .complete-process-section .process-media {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Final Mobile App header spacing fix */
body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  align-items: center !important;
  column-gap: 18px !important;
  width: 100% !important;
  min-width: 0 !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head .app-feature-icon {
  grid-column: 1;
  justify-self: start;
  margin: 0 !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head b {
  grid-column: 2;
  min-width: 0 !important;
  justify-self: stretch;
  text-align: left !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

body.home-page .clean-app-features > .clean-app-feature-card-inner > p {
  padding-right: 0 !important;
}

@media (max-width: 700px) {
  body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head {
    grid-template-columns: 40px minmax(0, 1fr) !important;
    column-gap: 16px !important;
  }
}

@media (max-width: 360px) {
  body.home-page .clean-app-features > .clean-app-feature-card-inner > .clean-app-feature-head {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    column-gap: 14px !important;
  }
}


/* --- MPPT Care logo (square 1:1): larger navbar logo + transparent footer logo --- */
.site-navbar{height:112px !important}
.site-navbar.scrolled{height:92px !important}
.site-brand img{height:100px !important;width:auto !important;max-width:none !important}
.site-navbar.scrolled .site-brand img{height:80px !important}
.footer-logo img{height:66px !important;width:auto !important;background:transparent !important;padding:0 !important;border-radius:0 !important}
@media(max-width:640px){.site-navbar{height:88px !important}.site-brand img{height:66px !important}.site-navbar.scrolled .site-brand img{height:58px !important}.footer-logo img{height:54px !important}}

/* --- Fix About "story" cards: keep title + description in the content column (not the 52px number column) --- */
.about-list div{align-items:start}
.about-list b{grid-column:2}
.about-list p{grid-column:2;margin-top:5px;max-width:none}

/* --- Navbar logo: larger (v2) --- */
.site-navbar{height:146px !important}
.site-navbar.scrolled{height:118px !important}
.site-brand img{height:132px !important;width:auto !important;max-width:none !important}
.site-navbar.scrolled .site-brand img{height:106px !important}
@media(max-width:640px){.site-navbar{height:96px !important}.site-brand img{height:78px !important}.site-navbar.scrolled .site-brand img{height:66px !important}}

/* --- Footer logo: crisp white version on the dark footer --- */
.footer-logo img{filter:none !important;background:#fff !important;padding:2px !important;border-radius:12px !important;height:72px !important;width:auto !important}

/* ============================================================
   Mobile navigation v2 — full-width panel + backdrop scrim
   (fixes grid abs-pos shrink; adds dim scrim + scroll lock)
   ============================================================ */
.site-nav-scrim{
  position:fixed; inset:0;
  background:rgba(12,14,22,.48);
  -webkit-backdrop-filter:blur(2px); backdrop-filter:blur(2px);
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .3s ease, visibility .3s ease;
  z-index:150;
}
@media (min-width:981px){ .site-nav-scrim{ display:none !important; } }
@media (max-width:980px){
  body.nav-locked{ overflow:hidden; }
  .site-nav-scrim.is-open{ opacity:1; visibility:visible; pointer-events:auto; }

  /* Full-width dropdown panel (override justify-self:center shrink) */
  #mainNavbar .site-nav{
    justify-self:stretch !important;
    left:12px !important; right:12px !important; width:auto !important;
    top:calc(100% + 8px) !important;
    padding:12px !important;
    gap:4px !important;
    border-radius:22px !important;
    box-shadow:0 26px 70px rgba(0,0,0,.22) !important;
    max-height:calc(100dvh - 96px);
    overflow-y:auto;
  }
  #mainNavbar.nav-open .site-nav .nav-link,
  #mainNavbar.nav-open .site-nav .nav-drop-btn{
    width:100%; justify-content:flex-start;
    padding:15px 16px !important; border-radius:14px !important;
    font-size:16px; font-weight:800; color:#1c1d24;
  }
  #mainNavbar.nav-open .site-nav .nav-link:hover,
  #mainNavbar.nav-open .site-nav .nav-drop-btn:hover{ background:#f6f7f9; }
  #mainNavbar.nav-open .site-nav .nav-link.active,
  #mainNavbar.nav-open .site-nav .nav-link[aria-current="page"]{
    background:#fff4ec; color:#e36206;
  }
  #mainNavbar.nav-open .site-nav .nav-cta{
    width:100%; justify-content:center;
    margin-top:6px !important; margin-right:0 !important;
    padding:15px 20px !important; font-size:15px; border-radius:14px !important;
    min-height:52px;
  }
}

/* ============================================================
   Small-screen centering — hero copy, section heads, buttons
   Applies ≤940px, where these layouts are single-column.
   ============================================================ */
@media (max-width:940px){
  /* ---------- Home hero ---------- */
  .simple-hero-content, .mppt-hero-content{ text-align:center !important; align-items:center !important; }
  .mppt-hero-content > p, .simple-hero-content > p{ margin-left:auto; margin-right:auto; }
  .mppt-hero-tagline{ justify-content:center !important; }
  .mppt-hero-buttons{ justify-content:center !important; }

  /* ---------- About page ---------- */
  .ab-hero-grid > div:first-child,
  .ab-who-grid  > div:first-child,
  .ab-app-grid  > div:first-child,
  .ab-do-head,
  .ab-why .ab-wrap > :not(.ab-why-grid),
  .ab-cta-inner{ text-align:center; }
  .ab-actions{ justify-content:center; }
  .ab-cta-inner{ display:flex; flex-direction:column; align-items:center; }
  .ab-hero-grid > div:first-child > p,
  .ab-who-grid  > div:first-child > p,
  .ab-app-grid  > div:first-child > p{ margin-left:auto; margin-right:auto; }

  /* ---------- Mobile-app page ---------- */
  .mapp-hero-grid > div:first-child,
  .mapp-show-grid > div:first-child,
  .mapp-head,
  .mapp-cta-inner{ text-align:center; }
  .mapp-head{ margin-left:auto; margin-right:auto; }
  .mapp-badges, .mapp-trust, .mapp-cta-inner{ justify-content:center !important; }
  .mapp-cta-inner{ display:flex; flex-direction:column; align-items:center; }
  .mapp-hero p.lead{ margin-left:auto; margin-right:auto; }
  .mapp-points{ text-align:left; max-width:340px; margin-left:auto; margin-right:auto; }

  /* ---------- Contact page ---------- */
  .ci-head{ text-align:center; }
}

/* Hero buttons: center label + arrow together on small screens */
@media (max-width:940px){
  .mppt-hero-buttons .mppt-primary-btn,
  .mppt-hero-buttons .mppt-ghost-btn{ justify-content:center !important; gap:12px; }
}

/* Shared app-cta section (Contact + Services): center copy on small screens */
@media (max-width:940px){
  .app-cta-copy{ text-align:center; }
  .app-cta-copy .app-cta-eyebrow,
  .app-cta-copy [class*="eyebrow"]{ margin-left:auto; margin-right:auto; }
  .app-cta-copy [class*="badge"],
  .app-cta-copy [class*="actions"],
  .app-cta-copy [class*="store"]{ justify-content:center; }
}

/* Contact page hero: center copy on small screens */
@media (max-width:940px){
  .contact-hero .hero-grid > div:first-child{ text-align:center; }
  .contact-hero .hero-grid > div:first-child > p{ margin-left:auto; margin-right:auto; }
}

/* ============================================================
   MPPT services grid — authoritative override (5 / 3 / 2 cols).
   Placed last so it wins over all earlier accumulated layers
   (including the <=900px horizontal single-column layout).
   ============================================================ */
body.services-page .design-support-services-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  justify-items: stretch;
  justify-content: stretch;
  gap: 20px;
  width: min(1240px, 100%);
  margin: 30px auto 0;
}
body.services-page .design-support-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: auto;
  max-width: none;
  height: auto;
  min-height: 200px;
  aspect-ratio: auto;
  gap: 14px;
  padding: 24px 14px;
  border-radius: 26px;
}
body.services-page .design-support-service-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  border-radius: 18px;
  margin-bottom: 0;
}
body.services-page .design-support-service-icon svg {
  width: 32px;
  height: 32px;
  display: block;
  fill: #e36206;
}
body.services-page .design-support-service-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.18;
  letter-spacing: -.02em;
}
body.services-page .design-support-service-title::after {
  display: block;
}
@media (max-width: 1080px) {
  body.services-page .design-support-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}
@media (max-width: 760px) {
  body.services-page .design-support-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  body.services-page .design-support-service-card {
    min-height: 158px;
    padding: 18px 10px;
    gap: 10px;
    border-radius: 20px;
  }
  body.services-page .design-support-service-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }
  body.services-page .design-support-service-icon svg {
    width: 26px;
    height: 26px;
  }
  body.services-page .design-support-service-title {
    font-size: 13px;
    line-height: 1.15;
  }
}

/* Hardening: force vertical, full-cell service cards at every width
   (beats the legacy <=900px / <=768px horizontal-card rules). */
body.services-page .design-support-service-card {
  flex-direction: column !important;
  width: auto !important;
  max-width: none !important;
  flex: 0 0 auto !important;
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
}
body.services-page .design-support-service-title {
  white-space: normal !important;
}

/* Service cards: description line + taller cards to fit icon+title+underline+copy */
body.services-page .design-support-service-card {
  min-height: 248px !important;
  padding: 26px 18px !important;
  gap: 10px !important;
}
body.services-page .design-support-service-desc {
  position: relative;
  z-index: 1;
  margin: 2px 0 0;
  max-width: 23ch;
  color: #6d7180;
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 760px) {
  body.services-page .design-support-service-card {
    min-height: 208px !important;
    padding: 20px 12px !important;
  }
  body.services-page .design-support-service-desc {
    font-size: 12px;
    max-width: 22ch;
  }
}

/* Clean flat cards to match reference — remove all orange radial glow/shade */
body.services-page .design-support-services-section {
  background: #ffffff !important;
}
body.services-page .design-support-service-card {
  background: #ffffff !important;
  border: 1px solid #efedf1 !important;
  box-shadow: 0 10px 26px rgba(18, 19, 26, .06) !important;
}
body.services-page .design-support-service-card::before {
  display: none !important;
}
body.services-page .design-support-service-icon {
  background: #fdf1e8 !important;
  border: 0 !important;
  box-shadow: 0 6px 16px rgba(227, 98, 6, .10) !important;
}
body.services-page .design-support-service-icon::after {
  display: none !important;
}

/* One-stop image (the section right after the map): smaller + centered,
   instead of full-bleed width. Does not affect the map above it. */
body.home-page .one-stop-image {
  width: min(1080px, 94%) !important;
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Footer engineer image — fills the blank space under the Services column,
   with a warm orange backlight glow behind the figure (theme colour). */
.footer-services-col {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-engineer-wrap {
  position: relative;
  display: block;
  width: min(300px, 100%);
  margin: 0 auto;
  isolation: isolate;
}
.footer-engineer-wrap::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 128%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(227,98,6,.60) 0%,
    rgba(227,98,6,.34) 30%,
    rgba(227,98,6,.12) 52%,
    rgba(227,98,6,0) 72%);
  filter: blur(16px);
  pointer-events: none;
}
.footer-engineer {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 900px) {
  .footer-engineer-wrap { width: min(240px, 70%); }
}
