/* UI/UX Design service — Form Rose */
.ux-svc-page {
  --ux-bg: #0c0a0f;
  --ux-panel: #16121c;
  --ux-panel-2: #1e1826;
  --ux-line: rgba(251, 113, 133, 0.16);
  --ux-rose: #fb7185;
  --ux-rose-dim: rgba(251, 113, 133, 0.12);
  --ux-blush: #fda4af;
  --ux-text: #e8e4ed;
  --ux-muted: #9b93a8;
  --ux-white: #faf7fc;
  --ux-display: 'Outfit', system-ui, sans-serif;
  --ux-body: 'Manrope', system-ui, sans-serif;

  --background-color: #0c0a0f;
  --default-color: #e8e4ed;
  --heading-color: #faf7fc;
  --surface-color: #16121c;
  --accent-color: #fb7185;
  --nav-color: #e8e4ed;
  --nav-hover-color: #fb7185;
  --nav-mobile-background-color: #16121c;

  font-family: var(--ux-body);
  color: var(--ux-text);
  background:
    radial-gradient(ellipse 65% 40% at 90% 0%, rgba(251, 113, 133, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 30% at 0% 50%, rgba(253, 164, 175, 0.06), transparent 50%),
    linear-gradient(180deg, #09070c 0%, var(--ux-bg) 40%, #100d14 100%) !important;
  overflow-x: hidden;
}

.ux-svc-page h1,
.ux-svc-page h2,
.ux-svc-page h3 {
  font-family: var(--ux-display);
  color: var(--ux-white);
  letter-spacing: -0.025em;
  font-weight: 700;
}

.ux-svc-page .header {
  background: rgba(12, 10, 15, 0.92) !important;
  backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid var(--ux-line) !important;
}
.ux-svc-page .header .logo img {
  max-height: 34px;
  filter: brightness(0) invert(1);
}
.ux-svc-page .header .navmenu > ul > li > a {
  color: rgba(232, 228, 237, 0.88) !important;
}
.ux-svc-page .header .navmenu > ul > li > a.active,
.ux-svc-page .header .navmenu > ul > li > a:hover {
  color: var(--ux-rose) !important;
}
.ux-svc-page .header .btn-getstarted {
  background: linear-gradient(135deg, var(--ux-rose), #e11d48) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
}
.ux-svc-page .header .mobile-nav-toggle { display: none !important; }
.ux-svc-page .main { padding-top: 0; }

.ux-svc-page .mobile-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(12, 10, 15, 0.96);
  border-bottom: 1px solid var(--ux-line);
  backdrop-filter: blur(12px);
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 10px;
}
.ux-svc-page .mobile-nav-container {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.ux-svc-page .mobile-logo img {
  max-height: 32px; width: auto;
  filter: brightness(0) invert(1);
}
.ux-svc-page .mobile-nav-actions { display: flex; align-items: center; gap: 8px; }
.ux-svc-page .mobile-nav-cta {
  background: linear-gradient(135deg, var(--ux-rose), #e11d48);
  color: #fff !important;
  padding: 8px 14px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; text-decoration: none;
}
.ux-svc-page .mobile-menu-toggle {
  width: 38px; height: 38px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(251, 113, 133, 0.18);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; cursor: pointer;
}
.ux-svc-page .mobile-menu-backdrop {
  position: fixed; inset: 0; z-index: 10040;
  background: rgba(9, 7, 12, 0.65);
  backdrop-filter: blur(3px);
  border: 0; cursor: pointer;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}
.ux-svc-page.mobile-menu-open .mobile-menu-backdrop {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.ux-svc-page .mobile-menu {
  position: fixed; top: 0; right: 0; width: min(300px, 86vw); height: 100%;
  background: var(--ux-panel); z-index: 10050;
  transform: translateX(105%); transition: transform 0.25s ease;
  padding: 1.25rem; border-left: 1px solid var(--ux-line);
}
.ux-svc-page .mobile-menu.active { transform: translateX(0); }
.ux-svc-page .mobile-menu-header {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem;
}
.ux-svc-page .mobile-menu-header span {
  display: block; font-family: var(--ux-display); font-weight: 700; font-size: 1.1rem; color: var(--ux-white);
}
.ux-svc-page .mobile-menu-header small { color: var(--ux-muted); }
.ux-svc-page .mobile-menu-close {
  border: 0; background: var(--ux-panel-2); color: var(--ux-text);
  width: 36px; height: 36px; border-radius: 10px;
}
.ux-svc-page .mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.ux-svc-page .mobile-menu a {
  display: block; padding: 0.75rem 0; color: var(--ux-text);
  font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--ux-line);
}

@media (max-width: 1199px) {
  .ux-svc-page #header { display: none !important; }
}

.ux-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.85rem 1.25rem; border-radius: 999px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  border: 0; cursor: pointer; transition: transform 0.15s;
  font-family: var(--ux-body);
}
.ux-btn:hover { transform: translateY(-1px); }
.ux-btn--rose {
  background: linear-gradient(135deg, var(--ux-rose), #e11d48);
  color: #fff;
  box-shadow: 0 10px 28px rgba(251, 113, 133, 0.3);
}
.ux-btn--ghost {
  background: transparent; color: var(--ux-text);
  border: 1px solid var(--ux-line);
}

.ux-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0.75rem; border-radius: 999px;
  background: var(--ux-rose-dim); color: var(--ux-rose);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
}

.ux-section { padding: clamp(3rem, 6vw, 4.75rem) 0; }
.ux-section--panel {
  background: rgba(22, 18, 28, 0.7);
  border-block: 1px solid var(--ux-line);
}
.ux-head { margin-bottom: 1.75rem; max-width: 640px; }
.ux-head--center { text-align: center; margin-inline: auto; }
.ux-head h2 { font-size: clamp(1.65rem, 3vw, 2.4rem); margin: 0.65rem 0; }
.ux-head h2 em { font-style: normal; color: var(--ux-rose); }
.ux-head p { color: var(--ux-muted); margin: 0; line-height: 1.7; }

.ux-hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex; align-items: flex-end;
  padding: clamp(120px, 14vw, 150px) 0 3.5rem;
  overflow: hidden;
}
.ux-hero__media { position: absolute; inset: 0; }
.ux-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: brightness(0.4) saturate(1.05);
}
.ux-hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 7, 12, 0.96) 0%, rgba(9, 7, 12, 0.75) 48%, rgba(9, 7, 12, 0.35) 100%),
    linear-gradient(0deg, rgba(9, 7, 12, 0.95) 0%, transparent 50%);
}
.ux-hero__content { position: relative; z-index: 2; max-width: 620px; }
.ux-hero__brand {
  font-family: var(--ux-display);
  color: var(--ux-rose);
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
}
.ux-hero h1 {
  font-size: clamp(2.25rem, 4.8vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
}
.ux-hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--ux-rose), var(--ux-blush));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ux-hero__lead {
  color: var(--ux-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  max-width: 480px;
}
.ux-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }
.ux-hero__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ux-pill {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--ux-line);
  background: rgba(12, 10, 15, 0.65);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ux-rose);
}

.ux-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ux-feature {
  background: var(--ux-panel);
  border: 1px solid var(--ux-line);
  border-radius: 18px;
  padding: 1.35rem;
  transition: transform 0.2s, border-color 0.2s;
}
.ux-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 113, 133, 0.4);
}
.ux-feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--ux-rose-dim);
  color: var(--ux-rose);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}
.ux-feature h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  font-family: var(--ux-body);
  font-weight: 800;
}
.ux-feature p { margin: 0; color: var(--ux-muted); font-size: 0.9rem; line-height: 1.6; }

/* Process studio */
.ux-studio {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: stretch;
}
.ux-studio__nav {
  background: var(--ux-panel);
  border: 1px solid var(--ux-line);
  border-radius: 20px;
  padding: 1.15rem;
}
.ux-studio__nav h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  font-family: var(--ux-body);
  font-weight: 800;
}
.ux-studio__nav > p {
  color: var(--ux-muted);
  font-size: 0.86rem;
  margin: 0 0 1rem;
  line-height: 1.55;
}
.ux-phase {
  display: block; width: 100%;
  text-align: left;
  border: 1px solid var(--ux-line);
  background: transparent;
  color: var(--ux-text);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  font-family: var(--ux-body);
  transition: all 0.15s;
}
.ux-phase:hover,
.ux-phase.active {
  background: var(--ux-rose-dim);
  border-color: rgba(251, 113, 133, 0.4);
}
.ux-phase strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}
.ux-phase span { font-size: 0.78rem; color: var(--ux-muted); }

.ux-studio__preview {
  background: var(--ux-panel);
  border: 1px solid var(--ux-line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.ux-studio__bar {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.9rem 1.1rem;
  background: var(--ux-panel-2);
  border-bottom: 1px solid var(--ux-line);
}
.ux-studio__bar strong { font-size: 0.92rem; font-family: var(--ux-body); }
.ux-studio__img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #120e18;
  overflow: hidden;
}
.ux-studio__img img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.75rem;
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  background: #120e18;
}
.ux-studio__img img[data-ux-img="phones"] {
  object-fit: cover;
  object-position: top;
  padding: 0;
}
.ux-studio__img img.active {
  opacity: 1;
}
.ux-studio__copy {
  padding: 1.15rem;
}
.ux-studio__copy h4 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  font-family: var(--ux-body);
  font-weight: 800;
}
.ux-studio__copy p {
  margin: 0;
  color: var(--ux-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.ux-show {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}
.ux-show--rev { direction: rtl; }
.ux-show--rev > * { direction: ltr; }
.ux-show__img {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ux-line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  background: #120e18;
}
.ux-show__img img {
  width: 100%; display: block;
  aspect-ratio: 16 / 11;
  object-fit: cover; object-position: center top;
}
.ux-list {
  list-style: none; padding: 0; margin: 1.15rem 0 0;
}
.ux-list li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  margin-bottom: 0.7rem; font-weight: 600; font-size: 0.92rem;
}
.ux-list i { color: var(--ux-rose); margin-top: 0.15rem; }

.ux-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.ux-process__step {
  background: var(--ux-panel);
  border: 1px solid var(--ux-line);
  border-radius: 16px;
  padding: 1.15rem 1rem;
  text-align: center;
}
.ux-process__step img {
  width: 100%;
  max-width: 140px;
  height: auto;
  margin: 0 auto 0.85rem;
  display: block;
  border-radius: 12px;
}
.ux-process__step strong {
  display: block;
  font-family: var(--ux-body);
  font-size: 0.95rem;
  color: var(--ux-white);
  margin-bottom: 0.3rem;
}
.ux-process__step span { font-size: 0.8rem; color: var(--ux-muted); line-height: 1.5; }

.ux-use {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ux-use__card {
  background: var(--ux-panel);
  border: 1px solid var(--ux-line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.ux-use__card:hover {
  border-color: rgba(251, 113, 133, 0.4);
  transform: translateY(-3px);
}
.ux-use__card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.ux-use__card div { padding: 1rem 1.1rem 1.2rem; }
.ux-use__card h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  font-family: var(--ux-body);
  font-weight: 800;
}
.ux-use__card p { margin: 0; color: var(--ux-muted); font-size: 0.86rem; line-height: 1.55; }

.ux-cta { padding: 3.5rem 0 4.5rem; }
.ux-cta__box {
  background:
    linear-gradient(135deg, rgba(251, 113, 133, 0.14), transparent 50%),
    var(--ux-panel);
  border: 1px solid var(--ux-line);
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}
.ux-cta__box h2 { margin: 0 0 0.65rem; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.ux-cta__box p { color: var(--ux-muted); max-width: 520px; margin: 0 auto 1.35rem; }
.ux-cta__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }

.ux-svc-page .footer {
  background: #09070c !important;
  border-top: 1px solid var(--ux-line);
  color: var(--ux-muted) !important;
}
.ux-svc-page .footer a { color: var(--ux-rose) !important; }
.ux-svc-page .footer .sitename,
.ux-svc-page .footer h4,
.ux-svc-page .footer .copyright p { color: var(--ux-white) !important; }
.ux-svc-page .footer-newsletter { display: none; }

@media (max-width: 991px) {
  .ux-features,
  .ux-studio,
  .ux-show,
  .ux-use,
  .ux-process { grid-template-columns: 1fr; }
  .ux-features { grid-template-columns: 1fr 1fr; }
  .ux-process { grid-template-columns: 1fr 1fr; }
  .ux-hero { min-height: auto; }
  .ux-show--rev { direction: ltr; }
}
@media (max-width: 575px) {
  .ux-features,
  .ux-use,
  .ux-process { grid-template-columns: 1fr; }
}
