/* ─── U-ACT DESIGN SYSTEM - LIGHT THEME ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

/* Prevent any element from causing horizontal scroll */
section, header, footer, nav, div { max-width: 100%; }

/* Every section clips its children */
section { overflow-x: hidden; }

/* ─── CUSTOM CURSOR ─── */
.ua-cursor-dot,
.ua-cursor-glow {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  will-change: transform;
}
.ua-cursor-dot {
  width: 8px; height: 8px;
  margin-left: -4px; margin-top: -4px;
  background: #0E5E81;
  transition: opacity 0.3s, width 0.15s, height 0.15s, margin 0.15s;
}
.ua-cursor-glow {
  width: 120px; height: 120px;
  margin-left: -60px; margin-top: -60px;
  background: radial-gradient(circle, rgba(14,94,129,0.18) 0%, transparent 70%);
  filter: blur(8px);
  transition: opacity 0.3s;
}
.ua-cursor-dot.hover { width: 12px; height: 12px; margin-left: -6px; margin-top: -6px; background: #1a7a9e; }
@media (pointer: fine) { * { cursor: none !important; } }

:root {
  --blue: #0E5E81;
  --blue-dark: #0a4a65;
  --blue-mid: #1a7a9e;
  --blue-light: #e8f4f9;
  --blue-border: #b8d9e8;
  --accent: #10b981;
  --dark: #0d1117;
  --text: #1a2332;
  --text-muted: #5a6a7a;
  --text-light: #8a9ab0;
  --bg: #f4f8fb;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --border: #dde8ef;
  --shadow-sm: 0 1px 4px rgba(14,94,129,0.08);
  --shadow: 0 4px 20px rgba(14,94,129,0.12);
  --shadow-lg: 0 12px 48px rgba(14,94,129,0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}


html {
  scroll-behavior: smooth;
  /* Note: overflow-x on html breaks position:sticky on iOS — do NOT add it here */
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  overscroll-behavior-x: none;
  padding-top: 68px;
}

/* ─── NAV ─── */
.ua-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #f4f8fb;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.ua-nav.scrolled {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}


.ua-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ua-nav-logo img {
  height: 40px;
  object-fit: contain;
}
.ua-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.ua-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.ua-nav-links a:hover,
.ua-nav-links a.active {
  color: var(--blue);
  background: var(--blue-light);
}
.ua-nav-cta {
  background: var(--blue) !important;
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: all 0.3s !important;
}
.ua-nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14,94,129,0.3) !important;
}

/* ─── NAV DROPDOWN ─── */
.ua-nav-dropdown {
  position: relative;
}
.ua-nav-dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 4px;
}
.ua-nav-dropdown-toggle::after {
  content: '▾';
  font-size: 14px;
  color: var(--text-light);
  transition: transform 0.2s;
}
.ua-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  min-width: 200px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 8px;
  z-index: 100;
  list-style: none;
}
.ua-nav-dropdown:hover .ua-nav-dropdown-menu,
.ua-nav-dropdown.active .ua-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.ua-nav-dropdown:hover .ua-nav-dropdown-toggle::after,
.ua-nav-dropdown.active .ua-nav-dropdown-toggle::after {
  transform: rotate(180deg);
}
.ua-nav-dropdown-menu li {
  width: 100%;
}
.ua-nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 14px !important;
  font-size: 13px !important;
  border-radius: 8px;
  color: var(--text-muted) !important;
  background: transparent !important;
  transition: all 0.2s;
  white-space: nowrap;
}
.ua-nav-dropdown-menu a:hover {
  background: var(--blue-light) !important;
  color: var(--blue) !important;
}
.ua-nav-dropdown-menu a.active {
  color: var(--blue) !important;
  font-weight: 700;
}
.ua-nav-links a {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .ua-nav-dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none;
    border: none;
    background: transparent !important;
    padding: 0 0 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .ua-nav-dropdown.active .ua-nav-dropdown-menu {
    max-height: 200px;
    margin-bottom: 10px;
  }
}
.ua-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.ua-menu-toggle:hover { background: var(--blue-light); }

/* ─── HERO ─── */
.ua-hero {
  background: linear-gradient(160deg, #e8f4f9 0%, #f0f8ff 40%, #f4f8fb 100%);
  padding: 60px 48px 160px;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* min-height ensures scroll indicator stays at bottom even on short viewports */
  min-height: 520px;
}
.ua-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(14,94,129,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ua-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,94,129,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,94,129,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, black 30%, transparent 85%);
  pointer-events: none;
}
.ua-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--blue-border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.ua-hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: ua-pulse 2s infinite;
}
@keyframes ua-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }

.ua-hero h1 {
  font-size: clamp(44px, 7vw, 100px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 24px;
}
.ua-hero h1 .gradient {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ua-hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.ua-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.ua-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ua-hero-scroll span { font-size: 10px; color: var(--text-light); letter-spacing: 0.15em; text-transform: uppercase; }
.ua-scroll-bar { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--blue), transparent); animation: ua-scroll-anim 2s ease infinite; }
@keyframes ua-scroll-anim { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ─── BUTTONS ─── */
.ua-btn-primary {
  background: var(--blue);
  color: white;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.ua-btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(14,94,129,0.3);
}
.ua-btn-ghost {
  border: 1.5px solid var(--blue-border);
  color: var(--blue);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ua-btn-ghost:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.ua-btn-wa {
  background: #25d366;
  color: white;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
.ua-btn-wa:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.35);
}

/* ─── CONTAINER ─── */
.ua-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── SECTIONS ─── */
.ua-section {
  padding: 120px 0;
}
.ua-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.ua-section-title {
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
}
.ua-section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 560px;
}

/* ─── MARQUEE ─── */
.ua-marquee {
  padding: 20px 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ua-marquee-track {
  display: flex;
  animation: ua-marquee 30s linear infinite;
  white-space: nowrap;
}
.ua-marquee-item {
  flex-shrink: 0;
  padding: 0 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 16px;
}
.ua-marquee-item::after { content: '·'; color: var(--accent); font-size: 18px; }
@keyframes ua-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── CARDS ─── */
.ua-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  position: relative;
  overflow: hidden;
}
.ua-card:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.ua-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}
.ua-card:hover::before { opacity: 1; }

/* ─── SERVICES GRID ─── */
.ua-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.ua-service-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  position: relative;
  overflow: hidden;
}
.ua-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(14,94,129,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.ua-service-card:hover::before { opacity: 1; }
.ua-service-card:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.ua-service-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 24px;
}
.ua-service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}
.ua-service-icon.blue { background: var(--blue-light); }
.ua-service-icon.green { background: #d1fae5; }
.ua-service-icon.purple { background: #ede9fe; }
.ua-service-icon.orange { background: #ffedd5; }
.ua-service-card h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.ua-service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.ua-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.3s;
}
.ua-service-link:hover { gap: 12px; }
/* Make the whole card clickable via a wrapping <a> */
a.ua-service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.ua-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ─── FEATURE SECTION ─── */
.ua-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ua-steps { margin-top: 40px; display: flex; flex-direction: column; }
.ua-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0.5;
  transition: opacity 0.4s;
}
.ua-step.active { opacity: 1; }
.ua-step:last-child { border-bottom: none; }
.ua-step-num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--blue-light);
  border: 1.5px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
}
.ua-step.active .ua-step-num {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.ua-step-content h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ua-step-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── PHONE MOCKUP ─── */
.ua-phone {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9/19;
  background: var(--dark);
  border: 8px solid #1a2a3a;
  border-radius: 44px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(14,94,129,0.25), 0 0 0 1px rgba(14,94,129,0.15);
}
.ua-phone-screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0d2a42 0%, #0a1e30 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: white;
}
.ua-phone-dna { font-size: 64px; margin-bottom: 16px; animation: ua-float 4s ease-in-out infinite; }
@keyframes ua-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.ua-phone-screen h4 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.ua-phone-screen p { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.ua-phone-bars { width: 100%; margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.ua-bar-row { display: flex; justify-content: space-between; align-items: center; }
.ua-bar-label { font-size: 9px; color: rgba(255,255,255,0.4); }
.ua-bar-track { flex: 1; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; margin: 0 10px; overflow: hidden; }
.ua-bar-fill { height: 100%; border-radius: 2px; }
.ua-bar-val { font-size: 9px; font-weight: 700; }

/* ─── FLOAT CARDS ─── */
.ua-phone-wrap { position: relative; }
.ua-float-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
}
.ua-float-top { top: 32px; right: -40px; }
.ua-float-bottom { bottom: 60px; left: -50px; }
.ua-float-label { font-size: 9px; font-weight: 700; letter-spacing: 0.08em; color: var(--text-light); text-transform: uppercase; margin-bottom: 3px; }
.ua-float-value { font-size: 18px; font-weight: 800; color: var(--text); }
.ua-float-sub { font-size: 10px; color: var(--accent); font-weight: 600; }

/* ─── PHYSIO SECTION ─── */
.ua-physio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ua-img-stack { position: relative; height: 540px; }
.ua-img-main {
  position: absolute;
  right: 0; top: 0;
  width: 78%;
  height: 85%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.ua-img-accent {
  position: absolute;
  left: 0; bottom: 0;
  width: 50%;
  height: 55%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 4px solid white;
}
.ua-stat-badge {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  background: var(--blue);
  color: white;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.ua-stat-num { font-size: 36px; font-weight: 900; letter-spacing: -0.04em; }
.ua-stat-label { font-size: 11px; opacity: 0.8; font-weight: 500; margin-top: 2px; }
.ua-physio-feats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ua-physio-feat {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  transition: all 0.3s;
}
.ua-physio-feat:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-sm);
}
.ua-physio-feat-icon { font-size: 20px; margin-bottom: 8px; }
.ua-physio-feat h5 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.ua-physio-feat p { font-size: 11px; color: var(--text-muted); line-height: 1.5; }

/* ─── NUMBERS ─── */
.ua-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.ua-proof-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.3s;
}
.ua-proof-card:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow);
}
.ua-big-num {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.ua-big-label { font-size: 15px; color: var(--text-muted); font-weight: 500; }

/* ─── REVIEWS ─── */
.ua-reviews-wrap { overflow: hidden; }
.ua-reviews-track {
  display: flex;
  gap: 20px;
  animation: ua-marquee-slow 40s linear infinite;
  margin-top: 56px;
}
.ua-reviews-track:nth-child(2) {
  animation-direction: reverse;
  margin-top: 20px;
}
@keyframes ua-marquee-slow { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ua-review-card {
  flex-shrink: 0;
  width: 320px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition: box-shadow 0.3s;
}
.ua-review-card:hover { box-shadow: var(--shadow); }
.ua-review-stars { color: #f59e0b; font-size: 13px; margin-bottom: 10px; letter-spacing: 2px; }
.ua-review-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.ua-review-author { display: flex; align-items: center; gap: 11px; }
.ua-review-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: white;
}
.ua-review-name { font-size: 13px; font-weight: 700; color: var(--text); }
.ua-review-sub { font-size: 11px; color: var(--text-light); }

/* ─── CTA SECTION ─── */
.ua-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 120px 48px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.ua-cta::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.ua-cta::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  pointer-events: none;
}
.ua-cta h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  position: relative; z-index: 1;
  margin-bottom: 20px;
}
.ua-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 440px;
  margin: 0 auto 44px;
  line-height: 1.7;
  position: relative; z-index: 1;
}
.ua-cta .ua-btn-wa { position: relative; z-index: 1; }

/* ─── FOOTER ─── */
.ua-footer {
  background: white;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.ua-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.ua-footer-logo img { height: 36px; object-fit: contain; margin-bottom: 14px; }
.ua-footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 240px; }
.ua-footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.ua-social-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 15px;
  transition: all 0.2s;
}
.ua-social-btn:hover { background: var(--blue-light); border-color: var(--blue-border); }
.ua-footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 18px;
}
.ua-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ua-footer-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.ua-footer-col a:hover { color: var(--blue); }
.ua-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.ua-footer-copy { font-size: 12px; color: var(--text-light); }

/* ─── LEGAL PAGE (AGB, Impressum, Datenschutz etc.) ─── */
.ua-legal-hero {
  background: linear-gradient(160deg, #e8f4f9 0%, #f4f8fb 100%);
  padding: 80px 48px 60px;
  border-bottom: 1px solid var(--border);
}
.ua-legal-hero h1 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
}
.ua-legal-hero p { font-size: 15px; color: var(--text-muted); }

.ua-legal-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 48px;
}
.ua-legal-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 48px 0 14px;
  letter-spacing: -0.01em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-light);
}
.ua-legal-body h2:first-child { margin-top: 0; }
.ua-legal-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 10px;
}
.ua-legal-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.ua-legal-body ul, .ua-legal-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.ua-legal-body li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 4px;
}
.ua-legal-body a { color: var(--blue); text-decoration: underline; }
.ua-legal-body strong { color: var(--text); font-weight: 700; }
.ua-legal-info-box {
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
}
.ua-legal-info-box p { color: var(--blue-dark); margin-bottom: 6px; font-size: 14px; }
.ua-legal-info-box p:last-child { margin-bottom: 0; }

/* ─── LEISTUNGEN PAGE ─── */
.ua-leistungen-grid {
  display: grid;
  gap: 24px;
}
.ua-leistung-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 88px;
  width: 100%;
  box-sizing: border-box;
}
.ua-leistung-card:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.ua-leistung-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--blue), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}
.ua-leistung-card:hover::before { opacity: 1; }
.ua-leistung-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.ua-leistung-emoji { font-size: 32px; line-height: 1; }
.ua-leistung-card h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.ua-leistung-card .ua-leistung-sub { font-size: 13px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.ua-leistung-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.ua-leistung-card ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.ua-leistung-card ul li {
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  color: var(--blue-dark);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}
.ua-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.ua-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
}
.ua-table th {
  background: var(--blue);
  color: white;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}
.ua-table td {
  padding: 12px 18px;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.ua-table tr:last-child td { border-bottom: none; }
.ua-table tr:nth-child(even) td { background: var(--bg); }

/* ─── KONTAKT PAGE ─── */
.ua-kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}
.ua-kontakt-info {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.ua-kontakt-info h3 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.ua-kontakt-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.ua-wa-block {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f0fff4;
  border: 1.5px solid #86efac;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.ua-wa-block-icon { font-size: 28px; flex-shrink: 0; }
.ua-wa-block h4 { font-size: 16px; font-weight: 700; color: #15803d; margin-bottom: 4px; }
.ua-wa-block p { font-size: 13px; color: #4d7c0f; margin: 0; }
.ua-location-card {
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}
.ua-location-card h4 { font-size: 16px; font-weight: 700; color: var(--blue-dark); margin-bottom: 6px; }
.ua-location-card p { font-size: 14px; color: var(--blue); margin: 0; line-height: 1.6; }

/* ─── REVEAL ANIMATIONS ─── */
.ua-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.23,1,0.32,1), transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.ua-reveal.visible { opacity: 1; transform: translateY(0); }
.ua-reveal-left { opacity: 0; transform: translateX(-48px); transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1), transform 0.8s cubic-bezier(0.23,1,0.32,1); }
.ua-reveal-left.visible { opacity: 1; transform: translateX(0); }
.ua-reveal-right { opacity: 0; transform: translateX(48px); transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1), transform 0.8s cubic-bezier(0.23,1,0.32,1); }
.ua-reveal-right.visible { opacity: 1; transform: translateX(0); }
.ua-d1 { transition-delay: 0.1s; }
.ua-d2 { transition-delay: 0.2s; }
.ua-d3 { transition-delay: 0.3s; }
.ua-d4 { transition-delay: 0.4s; }
.ua-d5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .ua-nav-inner { padding: 0 24px; }
  .ua-container { padding: 0 24px; }
  .ua-services-grid { grid-template-columns: 1fr; }
  .ua-feature-grid { grid-template-columns: 1fr; }
  .ua-physio-grid { grid-template-columns: 1fr; }
  .ua-proof-grid { grid-template-columns: 1fr 1fr; }
  .ua-kontakt-grid { grid-template-columns: 1fr; }
  .ua-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ua-float-top { right: -10px; }
  .ua-float-bottom { left: -10px; }
  .ua-stat-badge { right: 0; }
}
@media (max-width: 768px) {
  .ua-nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 68px);
    background: #f4f8fb; /* Solid background */
    padding: 32px 24px;
    gap: 12px;
    z-index: 999;
    transform: translateY(-101%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    overflow-y: auto;
  }
  .ua-nav-links.open {
    transform: translateY(0);
    visibility: visible;
  }
  .ua-nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    list-style: none;
  }
  .ua-nav-links.open li {
    opacity: 1;
    transform: translateY(0);
  }
  /* Staggered delay for links */
  .ua-nav-links.open li:nth-child(1) { transition-delay: 0.1s; }
  .ua-nav-links.open li:nth-child(2) { transition-delay: 0.15s; }
  .ua-nav-links.open li:nth-child(3) { transition-delay: 0.2s; }
  .ua-nav-links.open li:nth-child(4) { transition-delay: 0.25s; }
  .ua-nav-links.open li:nth-child(5) { transition-delay: 0.3s; }
  .ua-nav-links.open li:nth-child(6) { transition-delay: 0.35s; }

  .ua-nav-links a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: white; /* Untransparent background */
    color: var(--text) !important;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 24px;
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(14,94,129,0.06);
    border: 1px solid var(--border);
    transition: all 0.2s;
  }
  .ua-nav-links a.active {
    background: var(--blue-light);
    color: var(--blue) !important;
    border-color: var(--blue-border);
  }
  .ua-nav-links .ua-nav-cta {
    background: var(--blue) !important;
    color: white !important;
    margin-top: 12px;
    padding: 18px 24px !important;
  }

  /* Submenu on Mobile */
  .ua-nav-dropdown-menu {
    background: rgba(14,94,129,0.04) !important;
    border-radius: 14px !important;
    margin: 8px 0 !important;
    padding: 8px !important;
  }
  .ua-nav-dropdown-menu a {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    font-size: 15px !important;
    padding: 12px !important;
    color: var(--text-muted) !important;
  }
  .ua-nav-dropdown.active .ua-nav-dropdown-toggle {
    background: var(--blue-light) !important;
    border-color: var(--blue-border);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .ua-nav-dropdown.active .ua-nav-dropdown-menu {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    margin-top: -1px !important;
    border: 1px solid var(--blue-border);
    background: white !important;
  }
  
  .ua-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    gap: 4px;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .ua-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
  }
  .ua-nav-links.open ~ .ua-menu-toggle span:nth-child(1),
  .ua-nav-links.open + .ua-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .ua-nav-links.open ~ .ua-menu-toggle span:nth-child(2),
  .ua-nav-links.open + .ua-menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  .ua-nav-links.open ~ .ua-menu-toggle span:nth-child(3),
  .ua-nav-links.open + .ua-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .ua-hero { padding: 40px 24px 40px; min-height: unset; overflow: hidden; }
  /* Mobile: scroll indicator leaves absolute flow, centers below content */
  .ua-hero-scroll {
    position: static;
    transform: none;
    margin: 32px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 24px;
  }
  .ua-cta { padding: 80px 24px; }
  .ua-legal-hero { padding: 60px 24px 40px; }
  .ua-legal-body { padding: 48px 24px; }
  .ua-proof-grid { grid-template-columns: 1fr; }
  .ua-footer-grid { grid-template-columns: 1fr; }
  .ua-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .ua-physio-feats { grid-template-columns: 1fr; }
  .ua-img-stack { height: 340px; }

  /* Leistungs-Kacheln */
  .ua-leistungen-grid { grid-template-columns: 1fr; }
  .ua-leistung-card {
    padding: 28px 20px;
    min-width: 0;
  }
  .ua-leistung-card h2 { font-size: 20px; }
  .ua-leistung-card ul { padding-left: 4px; }
  .ua-leistung-card ul li { font-size: 13px; word-break: break-word; }
  .ua-leistung-card p { font-size: 14px; }

  /* Kontakt Seite */
  .ua-kontakt-grid { margin-top: 24px; }
}

/* ─── PARTNER BAR ─── */
.ua-partner-bar {
  background: #0b3d52;
  border-top: none;
  border-bottom: none;
  padding: 32px 0;
}
.ua-partner-bar .ua-container {
  max-width: 600px;
}
.ua-partner-bar .ua-partner-label {
  color: rgba(255,255,255,0.45);
}
.ua-partner-bar .ua-partner-divider {
  background: rgba(255,255,255,0.15);
}
.ua-partner-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0;
  padding-top: 18px;
  margin-bottom: 14px;
}
.ua-partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.ua-partner-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 16px 28px;
  border-radius: 16px;
  border: 1.5px solid transparent;
  transition: all 0.3s;
}
.ua-partner-logo:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
.ua-partner-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.ua-viva-logo-img {
  height: 56px !important;
}
.ua-partner-logo span {
  line-height: 1.3;
}
.ua-partner-logo small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.6;
  display: block;
  letter-spacing: 0.08em;
}
.ua-partner-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
@media (max-width: 768px) {
  .ua-partner-divider { display: none; }
  .ua-partner-logos { gap: 16px; }
}

/* ─── VIVA FITNESS SECTION ─── */
.ua-viva-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ua-viva-imgs {
  position: relative;
  height: 520px;
}
.ua-viva-main {
  position: absolute;
  right: 0; top: 0;
  width: 78%;
  height: 80%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.ua-viva-accent {
  position: absolute;
  left: 0; bottom: 0;
  width: 52%;
  height: 52%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 4px solid white;
}
.ua-viva-badge {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  background: var(--blue);
  color: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  white-space: nowrap;
}
.ua-viva-badge-num {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.ua-viva-badge-sub {
  font-size: 10px;
  opacity: 0.75;
  font-weight: 500;
  margin-top: 2px;
}
.ua-viva-feats {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ua-viva-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s;
}
.ua-viva-feat:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-sm);
}
.ua-viva-feat-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.ua-viva-feat h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.ua-viva-feat p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .ua-viva-grid { grid-template-columns: 1fr; gap: 40px; }
  .ua-viva-imgs { height: 380px; }
  .ua-viva-badge { right: 0; }
}
@media (max-width: 768px) {
  .ua-viva-imgs { height: 300px; }
}

/* ─── U-ACT APP SECTION ─── */
.ua-app-section {
  background: linear-gradient(135deg, #061e2b 0%, #0b3d52 50%, #0E5E81 100%);
  position: relative;
  overflow: clip;
}
.ua-app-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,122,158,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.ua-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ua-app-text .ua-section-title { margin-bottom: 20px; }
.ua-app-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ua-app-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ua-app-feat-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ua-app-feat strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}
.ua-app-feat span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.ua-app-phones {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: center;
}
.ua-app-phone {
  width: 46%;
  max-width: 340px;
  border-radius: 0;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.45));
  transition: transform 0.35s ease, filter 0.35s ease;
  display: block;
}
.ua-app-phone:hover {
  transform: translateY(-8px);
  filter: drop-shadow(0 36px 56px rgba(0,0,0,0.55));
}
.ua-app-phone-back { align-self: center; }

/* ─── Right phone (smaller + badge) ─── */
.ua-app-phone-right {
  position: relative;
  width: 36%;
  max-width: 260px;
  align-self: flex-end;
  flex-shrink: 0;
  overflow: visible;
}
.ua-app-phone-right-img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,0.45));
  transition: transform 0.35s ease, filter 0.35s ease;
}
.ua-app-phone-right-img:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 28px 48px rgba(0,0,0,0.55));
}
.ua-app-badge-gen {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: white;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.3;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(14,94,129,0.12);
  z-index: 10;
}
.ua-app-badge-gen span:first-child { font-size: 20px; line-height: 1; }
.ua-app-badge-gen span:last-child { white-space: normal; }

@media (max-width: 1100px) {
  .ua-app-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .ua-app-grid { grid-template-columns: 1fr; gap: 48px; }
  .ua-app-phones { gap: 16px; }
  .ua-app-phone { max-width: 260px; }
}
@media (max-width: 768px) {
  .ua-app-phone { max-width: 45vw; }
}
