:root {
  --uc-primary: #0b63f6;
  --uc-primary-dark: #0848b8;
  --uc-cyan: #0ea5e9;
  --uc-teal: #0fbaa8;
  --uc-ink: #10243e;
  --uc-muted: #5d7087;
  --uc-border: #dce8f4;
  --uc-surface: #ffffff;
  --uc-soft: #f4f9ff;
  --uc-soft-blue: #eaf4ff;
  --uc-success: #17a673;
  --uc-shadow-sm: 0 10px 28px rgba(25, 63, 104, .08);
  --uc-shadow: 0 24px 70px rgba(28, 74, 124, .13);
  --uc-radius: 1.5rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

header[id],
section[id],
article[id] { scroll-margin-top: 92px; }

body {
  margin: 0;
  color: var(--uc-ink);
  background: #fff;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
.navbar,
.offcanvas { --bs-body-color: var(--uc-ink); }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 2001;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--uc-primary), var(--uc-cyan), var(--uc-teal));
  box-shadow: 0 1px 8px rgba(11, 99, 246, .3);
}

a { color: var(--uc-primary); text-decoration: none; }
a:hover { color: var(--uc-primary-dark); }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 2000;
  padding: .75rem 1rem;
  color: #fff;
  background: var(--uc-ink);
  border-radius: .75rem;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid rgba(11, 99, 246, .35);
  outline-offset: 3px;
}

.download-bar {
  position: relative;
  z-index: 1031;
  background: linear-gradient(90deg, #eaf6ff 0%, #f0fffd 100%);
  border-bottom: 1px solid #d4e9f8;
}

.download-bar-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .55rem;
}

.download-bar-copy {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
  color: #23415f;
  font-size: .88rem;
  font-weight: 650;
}

.download-bar-copy img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}

.download-bar-copy strong { color: var(--uc-ink); }

.download-bar-badge {
  display: inline-flex;
  padding: .25rem .55rem;
  margin-right: .35rem;
  color: #087263;
  background: #d6fbf3;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.btn-download-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 40px;
  padding: .5rem 1rem;
  color: #fff;
  background: var(--uc-primary);
  border-radius: .75rem;
  font-size: .86rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(11, 99, 246, .2);
}

.btn-download-top:hover { color: #fff; background: var(--uc-primary-dark); }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  min-height: 76px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(220, 232, 244, .85);
  backdrop-filter: blur(14px);
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 13px;
  box-shadow: var(--uc-shadow-sm);
}

.brand-copy { line-height: 1.12; }
.brand-name { display: block; color: var(--uc-ink); font-weight: 850; letter-spacing: -.03em; }
.brand-tagline { display: block; margin-top: .2rem; color: var(--uc-muted); font-size: .72rem; font-weight: 600; }

.site-nav .nav-link {
  color: #425972;
  font-size: .92rem;
  font-weight: 700;
  border-radius: .7rem;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus { color: var(--uc-primary); background: var(--uc-soft-blue); }

.site-nav .nav-freeware {
  color: #fff;
  background: linear-gradient(110deg, var(--uc-primary), #2584ff);
  box-shadow: 0 10px 24px rgba(11, 99, 246, .18);
}

.site-nav .nav-freeware:hover,
.site-nav .nav-freeware:focus {
  color: #fff;
  background: linear-gradient(110deg, var(--uc-primary-dark), var(--uc-primary));
  transform: translateY(-1px);
}

.btn-consult,
.btn-primary-uc,
.btn-outline-uc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 48px;
  padding: .7rem 1.15rem;
  border-radius: .85rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.btn-consult,
.btn-primary-uc {
  color: #fff;
  background: var(--uc-primary);
  border: 1px solid var(--uc-primary);
  box-shadow: 0 12px 26px rgba(11, 99, 246, .2);
}

.btn-consult:hover,
.btn-primary-uc:hover { color: #fff; background: var(--uc-primary-dark); transform: translateY(-2px); }

.btn-outline-uc { color: var(--uc-ink); background: #fff; border: 1px solid #c9d9e9; }
.btn-outline-uc:hover { color: var(--uc-primary); border-color: var(--uc-primary); transform: translateY(-2px); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7.5rem) 0 5rem;
  background:
    radial-gradient(circle at 4% 5%, rgba(14, 165, 233, .13), transparent 26rem),
    radial-gradient(circle at 96% 0%, rgba(11, 99, 246, .12), transparent 30rem),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12rem -16rem auto;
  width: 34rem;
  height: 34rem;
  border: 5rem solid rgba(14, 165, 233, .05);
  border-radius: 50%;
  pointer-events: none;
  animation: heroOrbit 14s ease-in-out infinite alternate;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.25rem;
  padding: .5rem .75rem;
  color: #0a568f;
  background: #eaf6ff;
  border: 1px solid #cfeaff;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 1.35rem;
  color: var(--uc-ink);
  font-size: clamp(2.65rem, 5.4vw, 5.25rem);
  line-height: .99;
  font-weight: 900;
  letter-spacing: -.06em;
}

.text-gradient {
  color: var(--uc-primary);
  background: linear-gradient(100deg, var(--uc-primary) 0%, var(--uc-cyan) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 660px;
  margin: 0 0 1.75rem;
  color: var(--uc-muted);
  font-size: clamp(1.03rem, 1.6vw, 1.18rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  margin-top: 1.7rem;
  color: #49627d;
  font-size: .86rem;
  font-weight: 700;
}

.hero-proof span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-proof i { color: var(--uc-success); }

.hero-visual-wrap { position: relative; padding: 1.5rem 1rem 1.25rem 1.5rem; }

.hero-visual-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  background: #fff;
  border: 1px solid #d9e7f4;
  border-radius: 2rem;
  box-shadow: var(--uc-shadow);
}

.hero-visual-card .carousel,
.hero-visual-card .carousel-inner,
.hero-visual-card .carousel-item { height: 100%; min-height: 470px; }

.hero-visual-card img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }

.hero-visual-card .carousel-item.active img { animation: cinematicZoom 8s ease-out both; }

.hero-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 32, 62, .32));
  pointer-events: none;
}

.carousel-toggle {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 6;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .7rem;
  color: #fff;
  background: rgba(13, 36, 64, .88);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: .7rem;
  font-size: .72rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.carousel-toggle:hover,
.carousel-toggle:focus-visible { background: #0d2440; }

.visual-float {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: 245px;
  padding: .8rem 1rem;
  color: var(--uc-ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid #dbe8f5;
  border-radius: 1rem;
  box-shadow: var(--uc-shadow-sm);
}

.visual-float i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--uc-primary);
  border-radius: .75rem;
}

.visual-float strong { display: block; font-size: .86rem; line-height: 1.25; }
.visual-float small { display: block; margin-top: .15rem; color: var(--uc-muted); font-size: .7rem; }
.visual-float.top { top: 0; left: 0; }
.visual-float.bottom { right: 0; bottom: 0; }

.visual-float.top { animation: floatTop 5.2s ease-in-out infinite; }
.visual-float.bottom { animation: floatBottom 5.8s ease-in-out .4s infinite; }

.trust-strip { position: relative; z-index: 4; padding: 2rem 0 3.5rem; background: #fff; }

.trust-heading {
  margin-bottom: 1.25rem;
  color: #60748a;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-align: center;
  text-transform: uppercase;
}

.logo-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
}

.client-logo {
  flex: 0 1 calc((100% - 4rem) / 6);
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--uc-border);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(28, 74, 124, .055);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.client-logo img {
  width: 100%;
  height: 52px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.client-logo:hover {
  transform: translateY(-4px);
  border-color: #bddaf4;
  box-shadow: 0 16px 34px rgba(28, 74, 124, .11);
}

.client-logo:hover img { filter: none; opacity: 1; transform: scale(1.05); }

.preview-footer { padding: 2rem 0; color: #66798d; background: var(--uc-soft); text-align: center; font-size: .85rem; }

.section-pad { padding: clamp(4.5rem, 8vw, 7rem) 0; }
.section-alt { background: var(--uc-soft); }
.section-blue { background: linear-gradient(180deg, #eef7ff 0%, #f8fbff 100%); }

.section-intro { max-width: 760px; margin-bottom: 2.75rem; }
.section-intro.centered { margin-inline: auto; text-align: center; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .85rem;
  color: var(--uc-primary);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 1rem;
  color: var(--uc-ink);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -.05em;
}

.section-lead { margin: 0; color: var(--uc-muted); font-size: 1.04rem; }

.metrics-wrap { position: relative; z-index: 5; margin-top: -1.5rem; }

.metric-card {
  height: 100%;
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--uc-border);
  border-radius: 1.25rem;
  box-shadow: var(--uc-shadow-sm);
}

.metric-value {
  display: block;
  margin-bottom: .4rem;
  color: var(--uc-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.metric-label { color: #52677e; font-size: .86rem; font-weight: 750; }

.service-card,
.cloud-card,
.product-card,
.testimonial-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--uc-border);
  border-radius: 1.35rem;
  box-shadow: 0 12px 36px rgba(28, 74, 124, .07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.service-card:hover,
.cloud-card:hover,
.product-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #b8d6f3;
  box-shadow: 0 20px 48px rgba(28, 74, 124, .11);
}

.service-card:hover .icon-box,
.cloud-card:hover .icon-box { transform: translateY(-3px) rotate(-3deg); }

.service-card,
.cloud-card { padding: 1.75rem; }

.icon-box {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  color: var(--uc-primary);
  background: var(--uc-soft-blue);
  border-radius: 1rem;
  font-size: 1.25rem;
  transition: transform .25s ease, box-shadow .25s ease;
}

.icon-box.teal { color: #078675; background: #def9f4; }
.icon-box.violet { color: #7048c8; background: #f0ebff; }
.icon-box.orange { color: #c46513; background: #fff2df; }

.service-card h3,
.cloud-card h3,
.product-card h3 { margin: 0 0 .7rem; color: var(--uc-ink); font-size: 1.12rem; font-weight: 850; }
.service-card p,
.cloud-card p,
.product-card p { margin: 0; color: var(--uc-muted); font-size: .92rem; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.2rem;
  color: var(--uc-primary);
  font-size: .86rem;
  font-weight: 800;
}

.service-link i { transition: transform .2s ease; }
.service-link:hover i { transform: translateX(4px); }

.photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  height: 100%;
  padding: .6rem;
  background: linear-gradient(145deg, #fff, #eef7ff);
  border: 1px solid var(--uc-border);
  border-radius: 1.75rem;
  box-shadow: var(--uc-shadow);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: .6rem;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 1.25rem;
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  border-radius: 1.25rem;
  transition: transform .8s cubic-bezier(.2, .75, .25, 1);
}

.photo-frame:hover img { transform: scale(1.035); }
.photo-frame.tall { min-height: 610px; }
.photo-frame.tall img { min-height: 590px; }

.consultancy-points {
  display: grid;
  gap: .85rem;
  margin-top: 1.75rem;
}

.consultancy-points > div {
  position: relative;
  padding: 1rem 1rem 1rem 3.7rem;
  color: var(--uc-muted);
  background: #fff;
  border: 1px solid var(--uc-border);
  border-radius: 1rem;
  box-shadow: var(--uc-shadow-sm);
  transition: transform .22s ease, border-color .22s ease;
}

.consultancy-points > div:hover { transform: translateX(5px); border-color: #b8d6f3; }
.consultancy-points strong { display: block; margin-bottom: .1rem; color: var(--uc-ink); }
.consultancy-points span { position: absolute; top: 50%; left: 1rem; width: 34px; height: 34px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--uc-primary), var(--uc-cyan)); border-radius: .75rem; font-size: .75rem; font-weight: 900; transform: translateY(-50%); }

.featured-product {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background:
    radial-gradient(circle at 90% 15%, rgba(15, 186, 168, .16), transparent 18rem),
    linear-gradient(135deg, #edf7ff 0%, #f8fdff 52%, #edfff9 100%);
  border: 1px solid #cfe4f6;
  border-radius: 1.75rem;
  box-shadow: var(--uc-shadow-sm);
}

.featured-product::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 24rem;
  height: 24rem;
  border: 3.5rem solid rgba(11, 99, 246, .045);
  border-radius: 50%;
  pointer-events: none;
}

.featured-logo-shell {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, .86);
  border: 1px solid #d8e8f5;
  border-radius: 1.5rem;
}

.featured-logo-shell img { width: min(175px, 75%); max-height: 175px; object-fit: contain; }

.badge-soft,
.badge-free {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .25rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 850;
}

.badge-soft { color: #315676; background: #e4eff9; }
.badge-free { color: #087263; background: #d6fbf3; }

.featured-product h3 {
  margin: .85rem 0 .9rem;
  color: var(--uc-ink);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.04em;
}

.featured-product p { color: #526b83; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem 1rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  color: #2f506f;
  font-size: .86rem;
  font-weight: 750;
}

.feature-list li { display: flex; gap: .45rem; }
.feature-list i { margin-top: .25rem; color: var(--uc-success); }

.download-card {
  position: relative;
  z-index: 1;
  padding: 1.3rem;
  background: #fff;
  border: 1px solid #d4e6f5;
  border-radius: 1.25rem;
  box-shadow: var(--uc-shadow-sm);
}

.download-card .btn-primary-uc { width: 100%; }
.download-count-badge {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: .75rem;
  padding: .48rem .65rem;
  color: #315f78;
  background: #edf8ff;
  border: 1px solid #d4eafa;
  border-radius: .7rem;
  font-size: .76rem;
  font-weight: 750;
}
.download-count-badge i { color: var(--uc-teal); }
.download-count-badge strong { color: var(--uc-ink); font-size: .84rem; }
.download-disclosure { display: block; margin-top: .7rem; color: #6a7f94; font-size: .7rem; line-height: 1.5; text-align: center; }

.product-card { display: flex; flex-direction: column; min-height: 328px; padding: 1.5rem; }

.product-card-head { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-bottom: 1.15rem; }

.product-logo-box {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: .45rem;
  background: #fff;
  border: 1px solid var(--uc-border);
  border-radius: 1rem;
}

.product-logo-box img { width: 100%; height: 100%; object-fit: contain; }

.product-type {
  padding: .35rem .6rem;
  color: var(--uc-primary);
  background: var(--uc-soft-blue);
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.product-card .service-link { margin-top: auto; padding-top: 1.25rem; }

.microsoft-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(135deg, #f7fbff, #eaf5ff);
  border: 1px solid #d1e5f6;
  border-radius: 1.75rem;
}

.microsoft-mark {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #0b63f6, #0ea5e9);
  border-radius: 1rem;
  font-size: 1.45rem;
  box-shadow: 0 14px 30px rgba(11, 99, 246, .2);
  animation: softPulse 4.2s ease-in-out infinite;
}

.support-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin: 1.5rem 0;
}

.support-highlights span {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem;
  color: #385774;
  background: #fff;
  border: 1px solid var(--uc-border);
  border-radius: .9rem;
  font-size: .83rem;
  font-weight: 750;
}

.support-highlights i { color: var(--uc-success); }

.testimonial-card { position: relative; padding: 1.65rem; }
.testimonial-card::before { content: "“"; position: absolute; top: .55rem; right: 1.25rem; color: #d7e9fa; font-size: 4.5rem; line-height: 1; font-weight: 900; }
.testimonial-stars { display: flex; gap: .18rem; margin-bottom: 1rem; color: #f4b400; font-size: .78rem; }
.testimonial-card blockquote { position: relative; z-index: 1; margin: 0 0 1.35rem; color: #344f6a; font-size: .92rem; }
.testimonial-person { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: #fff; background: linear-gradient(135deg, var(--uc-primary), var(--uc-cyan)); border-radius: 50%; font-size: .78rem; font-weight: 900; }
.testimonial-person strong { display: block; color: var(--uc-ink); font-size: .84rem; }
.testimonial-person span { display: block; color: var(--uc-muted); font-size: .74rem; }

.google-reviews-panel {
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, .9);
  border: 1px solid #cfe0f0;
  border-radius: 1.5rem;
  box-shadow: var(--uc-shadow-sm);
}

.google-reviews-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem;
}

.google-mark {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: .6rem .75rem;
  color: #5e5e5e;
  background: #fff;
  border: 1px solid var(--uc-border);
  border-radius: .8rem;
  box-shadow: var(--uc-shadow-sm);
  font-family: Roboto, Arial, sans-serif;
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  white-space: nowrap;
}

.google-reviews-kicker { display: block; color: #536b82; font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.google-reviews-copy h3 { margin: .22rem 0; color: var(--uc-ink); font-size: 1.35rem; font-weight: 900; }
.google-live-score { margin: .15rem 0 0 !important; color: var(--uc-ink) !important; }
.google-live-score[hidden] { display: none; }
.google-review-count { color: #5b7188; font-size: .88rem; font-weight: 750; }
.google-reviews-copy p { margin: 0; color: var(--uc-muted); font-size: .82rem; }
.google-reviews-actions { display: flex; align-items: center; gap: 1rem; }
.google-stars { color: #f4b400; font-size: 1.05rem; letter-spacing: .1em; }
.google-reviews-actions .btn-outline-uc { min-height: 44px; padding: .55rem .85rem; font-size: .8rem; }

.google-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--uc-border);
  border-top: 1px solid var(--uc-border);
}

.google-review-grid[hidden] { display: none; }

.google-review-card {
  min-width: 0;
  padding: 1.25rem;
  background: #fff;
}

.google-review-card-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; }
.google-review-avatar { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; background: linear-gradient(135deg, #4285f4, #0ea5e9); border-radius: 50%; font-size: .75rem; font-weight: 900; }
.google-review-avatar.photo { object-fit: cover; background: #eef4fa; }
.google-review-author { min-width: 0; }
.google-review-author strong { display: block; overflow: hidden; color: var(--uc-ink); font-size: .84rem; text-overflow: ellipsis; white-space: nowrap; }
.google-review-author span { display: block; color: var(--uc-muted); font-size: .7rem; }
.google-review-card .google-stars { display: block; margin-bottom: .55rem; font-size: .76rem; }
.google-review-card p { display: -webkit-box; overflow: hidden; margin: 0; color: #445f79; font-size: .82rem; line-height: 1.6; -webkit-box-orient: vertical; -webkit-line-clamp: 5; }
.google-review-source { display: inline-flex; align-items: center; gap: .35rem; margin-top: .8rem; color: #315f9a; font-size: .72rem; font-weight: 800; }

.google-review-policy {
  margin: 0;
  padding: .8rem 1.25rem;
  color: #5e5e5e;
  background: #f7f9fb;
  border-top: 1px solid var(--uc-border);
  font-size: .75rem;
}

.google-review-policy[hidden] { display: none; }
.google-review-policy span[translate="no"] { font-family: Roboto, Arial, sans-serif; font-weight: 400; white-space: nowrap; }

.google-reviews-panel.is-live .google-mark { animation: softPulse 4.2s ease-in-out infinite; }

.contact-showcase {
  overflow: hidden;
  height: 100%;
  min-height: 440px;
  border: 1px solid var(--uc-border);
  border-radius: 1.5rem;
  box-shadow: var(--uc-shadow-sm);
}

.contact-showcase img { width: 100%; height: 100%; object-fit: cover; }

.contact-card {
  height: 100%;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: #fff;
  border: 1px solid var(--uc-border);
  border-radius: 1.5rem;
  box-shadow: var(--uc-shadow-sm);
}

.contact-card h3 { margin: 0 0 .55rem; color: var(--uc-ink); font-size: 1.5rem; font-weight: 900; }
.contact-card > p { color: var(--uc-muted); }

.contact-list { display: grid; gap: .7rem; margin: 1.4rem 0; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .85rem;
  background: var(--uc-soft);
  border: 1px solid #e2ecf5;
  border-radius: .95rem;
}

.contact-item i { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--uc-primary); background: #fff; border-radius: .7rem; }
.contact-item strong { display: block; color: var(--uc-ink); font-size: .78rem; }
.contact-item a,
.contact-item span { color: #5c7187; font-size: .84rem; font-weight: 650; }

.btn-whatsapp {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  color: #fff;
  background: #087443;
  border-radius: .85rem;
  font-weight: 850;
}

.btn-whatsapp:hover { color: #fff; background: #075f37; }

.map-wrap { overflow: hidden; min-height: 380px; margin-top: 1.25rem; border: 1px solid var(--uc-border); border-radius: 1.5rem; box-shadow: var(--uc-shadow-sm); }
.map-wrap iframe { width: 100%; height: 410px; display: block; border: 0; }

.site-footer { padding: 4.5rem 0 1.5rem; color: #d7e5f5; background: #0d2440; }
.footer-logo { width: 48px; height: 48px; object-fit: contain; padding: .25rem; background: #fff; border-radius: .85rem; }
.site-footer h2,
.site-footer h3 { color: #fff; font-weight: 850; }
.site-footer h2 { font-size: 1.2rem; }
.site-footer h3 { margin-bottom: 1rem; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.site-footer p { color: #aac0d8; font-size: .86rem; }
.footer-links { display: grid; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: #bed0e3; font-size: .84rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid rgba(255, 255, 255, .12); color: #93abc4; font-size: .78rem; }
.footer-bottom a { color: #c7d9ea; }
.footer-bottom a:hover { color: #fff; }

.footer-socials { display: flex; gap: .5rem; }
.footer-socials a,
.social-rail a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #1a3a5d;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .75rem;
}
.footer-socials a { width: 40px; height: 40px; }
.footer-socials a:hover,
.social-rail a:hover { color: #fff; background: var(--uc-primary); }

.social-rail {
  position: fixed;
  right: 14px;
  bottom: 20px;
  z-index: 1200;
  display: grid;
  gap: 10px;
}

.social-rail a {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  color: #fff;
  background: rgba(11, 18, 32, .86);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 14px 32px rgba(13, 36, 64, .2);
  backdrop-filter: blur(14px);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.social-rail a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--uc-primary), var(--uc-cyan));
  transform: translateY(-2px);
}

.social-rail .whatsapp {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: linear-gradient(135deg, #25d366 0%, #0dcf73 100%);
  border-color: rgba(255, 255, 255, .35);
  animation: whatsappGlow 2.4s ease-out infinite;
}

.social-rail .whatsapp::before {
  content: "";
  position: absolute;
  inset: -2px;
  border: 2px solid rgba(37, 211, 102, .78);
  border-radius: 20px;
  pointer-events: none;
  animation: whatsappRing 2.4s ease-out infinite;
}

.social-rail .whatsapp:hover {
  background: linear-gradient(135deg, #20bd5b 0%, #09b864 100%);
  transform: translateY(-3px) scale(1.03);
}

.social-rail .whatsapp i {
  transform-origin: center;
  animation: whatsappBeat 2.4s ease-in-out infinite;
}

.back-to-top {
  position: fixed;
  right: 14px;
  bottom: 262px;
  z-index: 1199;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--uc-primary), var(--uc-cyan));
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(13, 36, 64, .2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, box-shadow .25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.back-to-top:hover {
  color: #fff;
  box-shadow: 0 18px 38px rgba(11, 99, 246, .3);
  transform: translateY(-2px);
}

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px) scale(.985); transition: opacity .68s ease var(--reveal-delay, 0s), transform .68s cubic-bezier(.2, .72, .24, 1) var(--reveal-delay, 0s); }
.js .reveal.is-visible { opacity: 1; transform: none; }

.row > .reveal:nth-child(2) { --reveal-delay: .07s; }
.row > .reveal:nth-child(3) { --reveal-delay: .14s; }
.row > .reveal:nth-child(4) { --reveal-delay: .21s; }
.row > .reveal:nth-child(5) { --reveal-delay: .06s; }
.row > .reveal:nth-child(6) { --reveal-delay: .13s; }
.row > .reveal:nth-child(7) { --reveal-delay: .2s; }
.row > .reveal:nth-child(8) { --reveal-delay: .27s; }

@keyframes heroOrbit {
  from { transform: translate3d(0, 0, 0) rotate(0); }
  to { transform: translate3d(-2.5rem, -1rem, 0) rotate(18deg); }
}

@keyframes cinematicZoom {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

@keyframes floatTop {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}

@keyframes floatBottom {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 8px, 0); }
}

@keyframes softPulse {
  0%, 100% { box-shadow: 0 14px 30px rgba(11, 99, 246, .2); }
  50% { box-shadow: 0 16px 38px rgba(11, 99, 246, .34); }
}

@keyframes whatsappRing {
  0% { opacity: .9; transform: scale(.9); }
  72%, 100% { opacity: 0; transform: scale(1.55); }
}

@keyframes whatsappGlow {
  0%, 100% { box-shadow: 0 14px 32px rgba(13, 36, 64, .2), 0 0 0 0 rgba(37, 211, 102, .3); }
  55% { box-shadow: 0 16px 34px rgba(13, 36, 64, .24), 0 0 0 10px rgba(37, 211, 102, 0); }
}

@keyframes whatsappBeat {
  0%, 70%, 100% { transform: scale(1); }
  12% { transform: scale(1.18) rotate(-5deg); }
  24% { transform: scale(1.03) rotate(3deg); }
  36% { transform: scale(1.13); }
}

@media (max-width: 1199.98px) {
  .client-logo { flex-basis: calc((100% - 3.2rem) / 5); }
  .hero-visual-card,
  .hero-visual-card .carousel,
  .hero-visual-card .carousel-inner,
  .hero-visual-card .carousel-item,
  .hero-visual-card img { min-height: 410px; }
}

@media (max-width: 991.98px) {
  .hero { padding-top: 4.5rem; }
  .hero-visual-wrap { margin-top: 2.25rem; }
  .client-logo { flex-basis: calc((100% - 2.4rem) / 4); }
  .navbar-collapse { padding: 1rem 0 1.25rem; }
  .feature-list { grid-template-columns: 1fr; }
  .photo-frame.tall,
  .photo-frame.tall img { min-height: 430px; }
  .google-reviews-summary { grid-template-columns: auto minmax(0, 1fr); }
  .google-reviews-actions { grid-column: 1 / -1; justify-content: space-between; }
  .google-review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  .row.g-5 { --bs-gutter-x: 1.5rem; }
  .download-bar-copy span:last-child { display: none; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .client-logo { flex-basis: calc((100% - 1.6rem) / 3); }
  .metrics-wrap { margin-top: 0; padding-top: 1.5rem; }
  .social-rail {
    right: 10px;
    left: auto;
    bottom: 14px;
    display: grid;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }
  .social-rail a { width: 46px; height: 46px; box-shadow: 0 12px 26px rgba(13, 36, 64, .18); }
  .back-to-top { right: 10px; bottom: 240px; width: 46px; height: 46px; }
}

@media (max-width: 575.98px) {
  .download-bar-inner { align-items: flex-start; }
  .download-bar-copy { font-size: .78rem; }
  .download-bar-copy img { width: 34px; height: 34px; }
  .btn-download-top { min-height: 38px; padding-inline: .75rem; }
  .hero { padding-top: 3.5rem; }
  .hero-actions > a { width: 100%; }
  .hero-visual-wrap { padding: 1rem .2rem; }
  .hero-visual-card,
  .hero-visual-card .carousel,
  .hero-visual-card .carousel-inner,
  .hero-visual-card .carousel-item,
  .hero-visual-card img { min-height: 330px; }
  .visual-float { max-width: 205px; padding: .65rem .75rem; }
  .client-logo { flex-basis: calc((100% - .8rem) / 2); }
  .section-pad { padding-block: 4rem; }
  .featured-product { padding: 1.15rem; }
  .featured-logo-shell { min-height: 180px; }
  .product-card { min-height: 0; }
  .photo-frame,
  .photo-frame img,
  .photo-frame.tall,
  .photo-frame.tall img { min-height: 320px; }
  .support-highlights { grid-template-columns: 1fr; }
  .google-reviews-summary { grid-template-columns: 1fr; text-align: center; }
  .google-mark { margin-inline: auto; }
  .google-reviews-actions { flex-direction: column; }
  .google-reviews-actions .btn-outline-uc { width: 100%; }
  .carousel-toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}

.legal-page { min-height: 100vh; background: linear-gradient(180deg, #f5faff, #fff 22rem); }
.legal-shell { max-width: 920px; margin-inline: auto; padding: clamp(3rem, 8vw, 6rem) 1rem; }
.legal-card { padding: clamp(1.4rem, 4vw, 2.5rem); background: #fff; border: 1px solid var(--uc-border); border-radius: 1.5rem; box-shadow: var(--uc-shadow); }
.legal-card h1 { color: var(--uc-ink); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -.045em; }
.legal-card h2 { margin-top: 2rem; color: var(--uc-ink); font-size: 1.2rem; font-weight: 850; }
.legal-card p,
.legal-card li { color: var(--uc-muted); }
.legal-card .legal-updated { color: #637b93; font-size: .82rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
