/* ============================================
   UI/UX DESIGN PAGE - Custom Styles
   Mirrors software-development.css structure
   Color Palette: #00C853 → #00BFA5 (brand gradient)
   ============================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

/* ── Global heading overrides ── */
.ux-hero-title,
.ux-section-title,
.ux-feature-title,
.ux-service-title,
.ux-process-title,
.ux-why-title,
.ux-cta-title,
.ux-faq-question span {
  color: #111827 !important;
  font-weight: 500 !important;
}

h1.ux-hero-title,
h2.ux-section-title,
h4.ux-feature-title,
h4.ux-service-title,
h4.ux-process-title,
h4.ux-why-title,
h2.ux-cta-title {
  color: #111827 !important;
  font-weight: 500 !important;
}

/* ── CSS Variables ── */
:root {
  --ux-green:       #00C853;
  --ux-cyan:        #00BFA5;
  --ux-dark:        #009c42;
  --ux-gradient:    linear-gradient(135deg, #00C853 0%, #00BFA5 100%);
  --ux-text-dark:   #1a1a2e;
  --ux-text-mid:    #374151;
  --ux-text-light:  #64748b;
  --ux-bg-white:    #ffffff;
  --ux-bg-soft:     #f8fffe;
  --ux-bg-mint:     #f0fdf9;
  --ux-border:      #e5e7eb;
  --ux-radius-sm:   8px;
  --ux-radius-md:   16px;
  --ux-radius-lg:   24px;
  --ux-shadow-sm:   0 4px 16px rgba(0,0,0,0.07);
  --ux-shadow-md:   0 8px 32px rgba(0,0,0,0.11);
  --ux-shadow-lg:   0 20px 60px rgba(0,0,0,0.14);
  --ux-transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ────────────────────────────
   HERO SECTION
──────────────────────────── */
.ux-hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 100px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
}

.ux-hero .container { width: 100%; }

.ux-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(110,242,138,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(78,221,227,0.08) 0%, transparent 70%);
}

.ux-hero-badge {
  display: inline-block;
  background: var(--ux-gradient);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.ux-hero-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--ux-text-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.ux-hero-subtitle {
  font-size: 18px;
  color: var(--ux-text-light);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 40px;
}

.ux-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Buttons */
.ux-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--ux-gradient);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--ux-radius-sm);
  text-decoration: none;
  transition: var(--ux-transition);
  box-shadow: 0 8px 24px rgba(110,242,138,0.30);
}
.ux-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(110,242,138,0.40);
  color: #ffffff;
}

.ux-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--ux-text-dark);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--ux-radius-sm);
  text-decoration: none;
  border: 2px solid var(--ux-border);
  transition: var(--ux-transition);
}
.ux-btn-secondary:hover {
  border-color: var(--ux-green);
  color: #0a7040;
  background: var(--ux-bg-mint);
  transform: translateY(-2px);
}

/* Stats Row — sits below the CTA buttons, same as sd-hero-stats */
.ux-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.ux-stat-item {
  position: relative;
}
.ux-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--ux-border);
}

.ux-stat-number {
  font-size: 36px;
  font-weight: 800;
  background: var(--ux-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.ux-stat-label {
  font-size: 13px;
  color: var(--ux-text-light);
  font-weight: 500;
  margin-top: 4px;
  -webkit-text-fill-color: var(--ux-text-light);
}

/* Hero Image */
.ux-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ux-hero-img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ux-hero-img {
  width: 100%;
  max-width: 480px;
  height: 420px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: var(--ux-shadow-lg);
  display: block;
  background: linear-gradient(135deg, #f0fdf9 0%, #e6fbf5 50%, #ebfcf8 100%);
}

.ux-hero-img-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: #ffffff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  border: 1px solid rgba(110,242,138,0.25);
  animation: ux-badge-pop 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.4s both;
}
.ux-hero-img-badge i {
  font-size: 20px;
  color: #00C853;
}

@keyframes ux-badge-pop {
  from { opacity: 0; transform: scale(0.8) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Trusted Banner */
.ux-trusted-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding: 20px 28px;
  background: var(--ux-bg-soft);
  border: 1px solid rgba(110,242,138,0.25);
  border-radius: var(--ux-radius-md);
}

.ux-trusted-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ux-text-light);
  white-space: nowrap;
}

.ux-trusted-industries {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ux-trusted-industries span {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

/* ────────────────────────────
   SHARED SECTION STYLES
──────────────────────────── */
section { padding: 100px 0; }

.ux-section-center-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.ux-section-header {
  text-align: left;
  margin-bottom: 48px;/
}

.ux-section-badge {
  display: inline-block;
  background: var(--ux-gradient);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.ux-section-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--ux-text-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.ux-section-desc {
  font-size: 16px;
  color: var(--ux-text-light);
  line-height: 1.8;
  margin: 0 0 18px;
}

.ux-section-desc-highlight {
  font-size: 16px;
  color: var(--ux-text-mid);
  font-weight: 500;
  line-height: 1.7;
  margin: 24px 0 0;
  padding: 20px 28px;
  border-left: 4px solid var(--ux-green);
  background: var(--ux-bg-mint);
  border-radius: 0 var(--ux-radius-sm) var(--ux-radius-sm) 0;
  text-align: left;
}

.ux-section-subtitle {
  font-size: 17px;
  color: var(--ux-text-light);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ────────────────────────────
   WHAT IS + CHALLENGES (two-column)
──────────────────────────── */
.ux-what-challenges {
  background: #ffffff;
  padding: 100px 0;
}

/* LEFT column */
.ux-whatch-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500 !important;
  color: #111827 !important;
  line-height: 1.2;
  margin: 16px 0 20px;
  text-align: left !important;
}

.ux-whatch-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ux-text-light);
  margin-bottom: 14px;
}

.ux-whatch-quote {
  border-left: 4px solid var(--ux-green);
  background: var(--ux-bg-mint);
  border-radius: 0 var(--ux-radius-sm) var(--ux-radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0 32px;
}
.ux-whatch-quote p {
  font-size: 14.5px;
  color: var(--ux-text-mid);
  line-height: 1.75;
  margin: 0;
}

/* Inline feature items */
.ux-whatch-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ux-whatch-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ux-whatch-feat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--ux-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,200,83,0.25);
}

.ux-whatch-feat-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px;
}
.ux-whatch-feat-body p {
  font-size: 14px;
  color: var(--ux-text-light);
  line-height: 1.65;
  margin: 0;
}

/* RIGHT column — challenges card */
.ux-challenges-card {
  background: var(--ux-bg-mint);
  border: 1px solid rgba(0,200,83,0.18);
  border-radius: var(--ux-radius-lg);
  padding: 40px 36px;
  height: 100%;
}

.ux-challenges-card-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ux-green);
  margin-bottom: 28px;
  text-align: center;
}

.ux-challenge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--ux-border);
  border-radius: var(--ux-radius-md);
  padding: 16px 18px;
  margin-bottom: 12px;
  transition: var(--ux-transition);
}
.ux-challenge-row:last-child { margin-bottom: 0; }
.ux-challenge-row:hover {
  border-color: rgba(0,200,83,0.40);
  box-shadow: var(--ux-shadow-sm);
  transform: translateX(4px);
}

.ux-challenge-dot {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--ux-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #ffffff;
}

.ux-challenge-row p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ux-text-mid);
  line-height: 1.5;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
  .ux-what-challenges { padding: 72px 0; }
  .ux-challenges-card { margin-top: 40px; }
}
@media (max-width: 767px) {
  .ux-what-challenges { padding: 60px 0; }
  .ux-challenges-card { padding: 28px 20px; }
  .ux-whatch-title { font-size: 26px; }
}

/* ────────────────────────────
   SERVICES SECTION
──────────────────────────── */
.ux-services { background: var(--ux-bg-white); }

.ux-service-card {
  padding: 36px 28px;
  background: var(--ux-bg-white);
  border-radius: var(--ux-radius-lg);
  border: 1px solid var(--ux-border);
  transition: var(--ux-transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.ux-service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--ux-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.ux-service-card:hover {
  border-color: rgba(110,242,138,0.4);
  box-shadow: var(--ux-shadow-md);
  transform: translateY(-8px);
}
.ux-service-card:hover::before { transform: scaleX(1); }

.ux-service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.ux-service-icon {
  width: 52px;
  height: 52px;
  background: var(--ux-bg-mint);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #00a860;
  flex-shrink: 0;
  transition: var(--ux-transition);
}
.ux-service-card:hover .ux-service-icon {
  background: var(--ux-gradient);
  color: #ffffff;
}

.ux-service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ux-text-dark);
  margin: 0;
}

.ux-service-card > p {
  font-size: 15px;
  color: var(--ux-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ux-service-tech {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ux-tech-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--ux-bg-mint);
  color: #00a860;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(110,242,138,0.30);
  transition: var(--ux-transition);
}
.ux-service-card:hover .ux-tech-badge {
  background: rgba(110,242,138,0.12);
  border-color: rgba(110,242,138,0.50);
}

/* ────────────────────────────
   PROCESS SECTION
──────────────────────────── */
.ux-process {
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf9 60%, #f8fffe 100%);
  position: relative;
  overflow: hidden;
}

.ux-process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.ux-process-timeline::before {
  content: "";
  position: absolute;
  left: 26px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #00C853 0%, #00BFA5 100%);
  border-radius: 2px;
}

.ux-process-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  margin-bottom: 48px;
}
.ux-process-step:last-child { margin-bottom: 0; }

.ux-process-number {
  width: 52px;
  height: 52px;
  background: var(--ux-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(110,242,138,0.35);
  transition: var(--ux-transition);
}
.ux-process-step:hover .ux-process-number {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(110,242,138,0.45);
}

.ux-process-content {
  background: var(--ux-bg-white);
  border: 1px solid var(--ux-border);
  border-radius: var(--ux-radius-lg);
  padding: 32px 36px;
  flex: 1;
  transition: var(--ux-transition);
  margin-top: 10px;
}
.ux-process-step:hover .ux-process-content {
  border-color: rgba(110,242,138,0.40);
  box-shadow: var(--ux-shadow-md);
  transform: translateX(6px);
}

.ux-process-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ux-text-dark);
  margin-bottom: 12px;
}
.ux-process-desc {
  font-size: 16px;
  color: var(--ux-text-light);
  line-height: 1.75;
  margin: 0;
}

/* ────────────────────────────
   WHY CHOOSE SECTION
──────────────────────────── */
.ux-why-choose { background: var(--ux-bg-white); }

.ux-why-card {
  padding: 40px 32px;
  background: var(--ux-bg-white);
  border-radius: var(--ux-radius-lg);
  border: 1px solid var(--ux-border);
  text-align: center;
  transition: var(--ux-transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.ux-why-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ux-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.ux-why-card:hover {
  border-color: rgba(110,242,138,0.35);
  box-shadow: var(--ux-shadow-md);
  transform: translateY(-8px);
}
.ux-why-card:hover::after { transform: scaleX(1); }

.ux-why-icon {
  width: 72px;
  height: 72px;
  background: var(--ux-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: #ffffff;
  transition: var(--ux-transition);
}
.ux-why-card:hover .ux-why-icon {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 10px 28px rgba(110,242,138,0.35);
}

.ux-why-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--ux-text-dark);
  margin-bottom: 14px;
}
.ux-why-desc {
  font-size: 15px;
  color: var(--ux-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ────────────────────────────
   FAQ SECTION
──────────────────────────── */
.ux-faq {
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf9 60%, #f8fffe 100%);
}

.ux-faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ux-faq-item {
  background: var(--ux-bg-white);
  border-radius: var(--ux-radius-md);
  border: 1px solid var(--ux-border);
  overflow: hidden;
  transition: var(--ux-transition);
}
.ux-faq-item:hover,
.ux-faq-item.active {
  border-color: rgba(110,242,138,0.45);
  box-shadow: var(--ux-shadow-sm);
}

.ux-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--ux-transition);
}
.ux-faq-question span {
  font-size: 17px;
  font-weight: 600;
  color: var(--ux-text-dark);
  line-height: 1.4;
}
.ux-faq-question i {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--ux-bg-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #00a860;
  transition: transform 0.35s ease, background 0.35s ease;
}
.ux-faq-item.active .ux-faq-question i {
  transform: rotate(180deg);
  background: var(--ux-gradient);
  color: #ffffff;
}

.ux-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ux-faq-answer-content {
  padding: 0 28px 24px;
}
.ux-faq-answer-content p {
  font-size: 16px;
  color: var(--ux-text-light);
  line-height: 1.75;
  margin: 0;
}

/* ────────────────────────────
   CTA SECTION
──────────────────────────── */
.ux-cta {
  background: linear-gradient(135deg, #0a2e1a 0%, #1a4d35 50%, #0e3825 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.ux-cta::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(110,242,138,0.12) 0%, transparent 60%);
  border-radius: 50%;
}
.ux-cta::after {
  content: "";
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(78,221,227,0.10) 0%, transparent 60%);
  border-radius: 50%;
}

.ux-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ux-cta-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}
.ux-cta-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}
.ux-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 52px;
  background: var(--ux-gradient);
  color: #ffffff;
  font-weight: 800;
  font-size: 17px;
  border-radius: var(--ux-radius-md);
  text-decoration: none;
  transition: var(--ux-transition);
  box-shadow: 0 10px 32px rgba(110,242,138,0.35);
}
.ux-btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(110,242,138,0.50);
  color: #ffffff;
}

/* ────────────────────────────
   RESPONSIVE
──────────────────────────── */
@media (max-width: 991px) {
  .ux-hero {
    padding: 120px 0 80px;
    min-height: auto;
  }
  .ux-hero-image { margin-top: 48px; }
  .ux-trusted-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .ux-challenges-grid { grid-template-columns: repeat(2, 1fr); }
  .ux-process-timeline::before { display: none; }
  .ux-process-step {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
  }
  .ux-process-number { width: 44px; height: 44px; font-size: 13px; }
  .ux-process-content { margin-top: 0; }
}

@media (max-width: 767px) {
  section { padding: 72px 0; }
  .ux-hero {
    padding: 100px 0 60px;
    text-align: center;
  }
  .ux-hero-subtitle { margin: 0 auto 32px; }
  .ux-hero-cta { justify-content: center; }
  .ux-hero-stats {
    justify-content: center;
    gap: 28px;
  }
  .ux-stat-item:not(:last-child)::after { display: none; }

  /* Hero image — full width, natural height */
  .ux-hero-image {
    margin-top: 40px;
    justify-content: center;
  }
  .ux-hero-img-wrap {
    width: 100%;
    max-width: 100%;
  }
  .ux-hero-img {
    width: 100%;
    max-width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
  }
  /* Badge — keep it inside the image on mobile */
  .ux-hero-img-badge {
    left: 12px;
    bottom: 16px;
    font-size: 12px;
    padding: 8px 14px;
  }
  .ux-hero-img-badge i { font-size: 16px; }

  .ux-challenges-grid { grid-template-columns: 1fr; gap: 16px; }
  .ux-process-content { padding: 24px 22px; }
  .ux-process-content:hover { transform: none; }
  .ux-faq-question { padding: 18px 20px; }
  .ux-faq-question span { font-size: 15px; }
  .ux-faq-answer-content { padding: 0 20px 20px; }
}

@media (max-width: 480px) {
  .ux-hero-stats { gap: 20px; }
  .ux-stat-number { font-size: 28px; }
  .ux-btn-primary,
  .ux-btn-secondary { padding: 12px 24px; font-size: 14px; }
  .ux-btn-cta { padding: 15px 36px; font-size: 15px; }
  .ux-service-card,
  .ux-why-card,
  .ux-feature-card { padding: 28px 20px; }

  .ux-hero-img {
    height: 220px;
  }
  .ux-hero-img-badge {
    left: 8px;
    bottom: 12px;
    font-size: 11px;
    padding: 7px 12px;
    gap: 7px;
  }
}
