/* ============================================================
   UltraValue Web Design — CF Presence Sales Page
   Design system: Navy / Blue / Orange · Nunito · Rounded
   ============================================================ */
:root {
  --bg:       #F5F9FF;
  --bg2:      #EBF3FF;
  --white:    #FFFFFF;
  --navy:     #1B3A6B;
  --blue:     #2D7DD2;
  --blue-lt:  #5B9FE8;
  --orange:   #F4622A;
  --orange-dk:#D4511B;
  --ink:      #1A2B45;
  --mid:      #5A6E8A;
  --border:   #D6E4F5;
  --green:    #1A9E6E;
  --red:      #E03E3E;
  --shadow:   rgba(27,58,107,0.10);
  --nav-h:    58px;
  --r:        12px;
  --max-w:    1100px;
  --section-pad: clamp(72px, 9vw, 110px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.uv-max { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px,4vw,56px); }

.section-label {
  display: inline-block;
  background: rgba(45,125,210,0.1);
  color: var(--blue);
  font-family: 'Nunito', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.section-heading {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900; line-height: 1.12;
  letter-spacing: -0.02em; color: var(--navy); margin-bottom: 14px;
}
.section-heading em { font-style: italic; color: var(--mid); font-weight: 800; }
.section-sub { font-size: 1.05rem; color: var(--mid); line-height: 1.75; }

.uv-section { padding: var(--section-pad) 0; }
.uv-section-alt { background: var(--bg2); }
.uv-section-white { background: var(--white); }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 15px 28px; background: var(--orange); color: var(--white);
  font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 800;
  border-radius: 8px; border: none; cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(244,98,42,0.35); text-decoration: none;
}
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,98,42,0.45); color: var(--white); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 15px 28px; background: var(--white); color: var(--navy);
  font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 700;
  border-radius: 8px; border: 1.5px solid var(--border); cursor: pointer;
  transition: background 0.18s, border-color 0.18s; text-decoration: none;
}
.btn-ghost:hover { background: var(--bg2); border-color: var(--blue-lt); }

/* ---- Scroll reveal ---- */
.uv-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.uv-reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAV
   ============================================================ */
#uv-nav, #uv-nav *, #uv-nav *::before, #uv-nav *::after { box-sizing: border-box !important; }
#uv-nav {
  position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important;
  z-index: 9000 !important;
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: saturate(180%) blur(20px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 2px 12px var(--shadow) !important;
}
.uv-nav-inner {
  max-width: var(--max-w) !important; width: 100% !important;
  margin: 0 auto !important; padding: 0 clamp(20px,4vw,56px) !important;
  display: flex !important; flex-direction: row !important;
  align-items: center !important; height: var(--nav-h) !important;
}
.uv-nav-logo {
  font-family: 'Nunito', sans-serif !important; font-size: 17px !important;
  font-weight: 900 !important; color: var(--navy) !important;
  letter-spacing: -0.02em !important; text-decoration: none !important;
  flex-shrink: 0 !important; line-height: 1 !important;
}
.uv-nav-logo span { color: var(--blue) !important; font-style: italic !important; }
.uv-nav-links {
  display: flex !important; align-items: center !important;
  gap: 2px !important; margin-left: auto !important; margin-right: 16px !important;
}
.uv-nav-links a {
  padding: 8px 12px; font-size: 13px; font-weight: 600;
  color: var(--mid); font-family: 'Nunito', sans-serif;
  transition: color 0.15s; text-decoration: none; white-space: nowrap;
}
.uv-nav-links a:hover { color: var(--navy); }
.uv-nav-cta {
  flex-shrink: 0 !important; margin: 0 !important;
  padding: 9px 20px !important; display: inline-block !important;
  background: var(--orange) !important; color: var(--white) !important;
  font-family: 'Nunito', sans-serif !important; font-size: 13px !important;
  font-weight: 800 !important; border-radius: 8px !important;
  white-space: nowrap !important; transition: background 0.15s !important;
  text-decoration: none !important; box-shadow: 0 3px 12px rgba(244,98,42,0.3) !important;
}
.uv-nav-cta:hover { background: var(--orange-dk) !important; color: var(--white) !important; }
.uv-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; margin-left: auto; padding: 8px;
}
.uv-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }
.uv-mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  z-index: 8999; padding: 20px 24px 28px;
  border-bottom: 1px solid var(--border); flex-direction: column;
}
.uv-mobile-menu.open { display: flex; }
.uv-mobile-menu a {
  display: block; padding: 13px 0; font-size: 15px; font-weight: 600;
  color: var(--mid); border-bottom: 1px solid var(--border); font-family: 'Nunito', sans-serif;
}
.uv-mobile-menu a:last-child { border-bottom: none; }
.uv-mobile-cta-link {
  margin-top: 18px !important; display: flex !important;
  align-items: center; justify-content: center;
  height: 46px; background: var(--orange) !important;
  color: var(--white) !important; border-radius: 8px;
  font-size: 14px !important; font-weight: 800 !important; border-bottom: none !important;
}

/* ============================================================
   HERO
   ============================================================ */
#uv-hero {
  background: linear-gradient(135deg, #1B3A6B 0%, #1e4a8a 50%, #1B3A6B 100%);
  padding: calc(var(--nav-h) + 80px) clamp(20px,4vw,60px) 96px;
  text-align: center; position: relative; overflow: hidden;
}
#uv-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 15%, rgba(45,125,210,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(244,98,42,0.12) 0%, transparent 45%);
  pointer-events: none;
}
#uv-hero::after {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  border: 80px solid rgba(45,125,210,0.10); border-radius: 50%;
  top: -150px; right: -150px; pointer-events: none;
}
.uv-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.uv-hero-offer-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff;
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 22px; border-radius: 100px; margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(244,98,42,0.45);
  animation: heroPillPulse 2.5s ease-in-out infinite;
}
@keyframes heroPillPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(244,98,42,0.45); }
  50% { box-shadow: 0 4px 32px rgba(244,98,42,0.70); }
}
.uv-hero-h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.03em; color: var(--white); margin-bottom: 12px;
}
.uv-hero-h1 em { font-style: italic; color: #FFD166; font-weight: 800; }
.uv-hero-h1 .strike { text-decoration: line-through; color: rgba(255,255,255,0.35); font-style: normal; }
.uv-hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: rgba(255,255,255,0.72);
  max-width: 600px; margin: 0 auto 44px; line-height: 1.7;
}
.uv-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 44px; }
.uv-hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 28px; }
.uv-hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500;
}
.uv-hero-trust-item::before { content: '✓'; color: #4ECDC4; font-weight: 900; font-size: 12px; }
.uv-trust-star { color: #FFD166; font-size: 11px; letter-spacing: 1px; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(0.8);} }

/* ============================================================
   PROOF BAR
   ============================================================ */
.uv-proof-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px 24px; text-align: center;
}
.uv-proof-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px; font-size: 13px; font-weight: 600; color: var(--mid);
}
.uv-proof-stat strong {
  display: block; font-family: 'Nunito', sans-serif;
  font-size: 1.4rem; font-weight: 900; color: var(--navy);
  line-height: 1; margin-bottom: 2px;
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.uv-pain-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px;
}
.uv-pain-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 28px 24px;
  box-shadow: 0 2px 8px var(--shadow);
}
.uv-pain-icon { font-size: 28px; margin-bottom: 14px; }
.uv-pain-title {
  font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 800;
  color: var(--navy); margin-bottom: 8px;
}
.uv-pain-body { font-size: 14px; color: var(--mid); line-height: 1.65; }

/* ============================================================
   WHAT'S INCLUDED
   ============================================================ */
.uv-incl-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.uv-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.uv-feat-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.uv-feat-item:hover { border-color: var(--blue-lt); box-shadow: 0 4px 16px var(--shadow); }
.uv-feat-icon { font-size: 22px; flex-shrink: 0; line-height: 1; margin-top: 1px; }
.uv-feat-title {
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 800;
  color: var(--navy); margin-bottom: 3px; line-height: 1.3;
}
.uv-feat-body { font-size: 12px; color: var(--mid); line-height: 1.5; }
.uv-check-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 24px; }
.uv-check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--ink); line-height: 1.5;
}
.uv-check-list li::before {
  content: '✓'; color: var(--green); font-weight: 900;
  font-size: 13px; flex-shrink: 0; margin-top: 2px;
}

/* ============================================================
   PRICING CARD
   ============================================================ */
@keyframes uvGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45,125,210,0), 0 8px 32px rgba(45,125,210,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(45,125,210,0.10), 0 16px 48px rgba(45,125,210,0.28); }
}
.uv-solo-card-wrap { max-width: 540px; margin: 48px auto 0; }
.uv-price-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 32px 28px; position: relative;
  box-shadow: 0 2px 10px var(--shadow);
}
.uv-price-card.featured {
  border-color: var(--blue); background: #F0F7FF;
  animation: uvGlow 2.8s ease-in-out infinite;
}
.uv-price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white);
  font-family: 'Nunito', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.uv-price-num {
  font-family: 'Nunito', sans-serif; font-size: 52px; font-weight: 900;
  color: var(--navy); line-height: 1; margin-bottom: 4px; letter-spacing: -0.02em;
}
.uv-price-num sup { font-size: 22px; vertical-align: super; font-weight: 800; }
.uv-offer-strike {
  font-size: 15px; color: var(--mid); text-decoration: line-through;
  font-weight: 600; margin-left: 4px;
}
.uv-discount-block {
  background: linear-gradient(135deg, var(--orange) 0%, #D4511B 100%);
  border-radius: 10px; padding: 14px 18px; margin: 16px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 4px 16px rgba(244,98,42,0.30);
}
.uv-discount-save {
  font-family: 'Nunito', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.80);
}
.uv-discount-amt {
  font-family: 'Nunito', sans-serif; font-size: 28px; font-weight: 900;
  color: #fff; letter-spacing: -0.02em; line-height: 1;
}
.uv-discount-right { text-align: right; flex-shrink: 0; }
.uv-discount-was { font-size: 12px; color: rgba(255,255,255,0.70); text-decoration: line-through; font-weight: 600; }
.uv-discount-now { font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800; color: #fff; }
.uv-instalment-box {
  background: #F0FFF6; border: 1.5px solid #B2E8D2;
  border-radius: 10px; padding: 10px 14px; margin-bottom: 18px;
  font-size: 13px; color: var(--ink); line-height: 1.5;
}
.uv-instalment-box strong { color: #00843D; }
.uv-price-desc { font-size: 14px; color: var(--mid); line-height: 1.6; margin-bottom: 20px; }
.uv-price-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px;
}
.uv-price-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13.5px; color: var(--mid); line-height: 1.5;
}
.uv-price-features li::before {
  content: '✓'; color: var(--green); font-weight: 900; font-size: 12px; flex-shrink: 0; margin-top: 2px;
}

/* ============================================================
   CLOUDFLARE CALLOUT
   ============================================================ */
.uv-cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; }

/* ============================================================
   PAYLATER
   ============================================================ */
.uv-paylater {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 14px; padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.uv-paylater-body { flex: 1; }
.uv-paylater-body strong { color: #fff; font-family: 'Nunito', sans-serif; font-size: 15px; display: block; margin-bottom: 4px; }
.uv-paylater-body p { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.5; margin: 0; }
.uv-paylater-amt {
  font-family: 'Nunito', sans-serif; font-size: 26px; font-weight: 900;
  color: #00D166; white-space: nowrap; flex-shrink: 0; text-align: center;
}
.uv-paylater-amt span { font-size: 12px; color: rgba(255,255,255,0.5); display: block; font-weight: 600; }

/* ============================================================
   PORTFOLIO / RECENT WORK
   ============================================================ */
.uv-portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.uv-port-card {
  border-radius: var(--r); overflow: hidden;
  background: var(--white); border: 1.5px solid var(--border);
  box-shadow: 0 2px 10px var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.2s;
  display: block; text-decoration: none; color: inherit;
}
.uv-port-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(27,58,107,0.14);
  border-color: var(--blue-lt);
}
.uv-port-img-wrap {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
  position: relative; background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.uv-port-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform 0.4s ease; display: block;
}
.uv-port-card:hover .uv-port-img-wrap img { transform: scale(1.03); }
.uv-port-live-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,0.72); color: #fff;
  font-size: 11px; font-weight: 700; font-family: 'Nunito', sans-serif;
  padding: 4px 10px; border-radius: 100px;
  display: flex; align-items: center; gap: 5px;
  backdrop-filter: blur(6px);
}
.uv-port-live-dot {
  width: 6px; height: 6px; background: #25D366;
  border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}
.uv-port-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; background: #F0F3F8;
  border-bottom: 1px solid var(--border);
}
.uv-port-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.uv-port-dot:nth-child(1) { background: #FF6058; }
.uv-port-dot:nth-child(2) { background: #FFBD2E; }
.uv-port-dot:nth-child(3) { background: #28C840; }
.uv-port-url {
  font-size: 11px; color: var(--mid); font-family: 'Nunito Sans', monospace;
  font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  flex: 1; text-align: center;
}
.uv-port-info { padding: 18px 20px 20px; }
.uv-port-tag {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 6px;
}
.uv-port-title {
  font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 900;
  color: var(--navy); margin-bottom: 7px; line-height: 1.2;
}
.uv-port-desc { font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 12px; }
.uv-port-arrow { font-size: 12px; color: var(--blue); font-weight: 700; }

/* ============================================================
   ABOUT SAM
   ============================================================ */
.uv-sam-grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 72px; align-items: center;
}
.uv-sam-img-box {
  width: 100%; aspect-ratio: 3/4;
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.uv-reviews-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px;
}
.uv-review-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 26px;
  box-shadow: 0 2px 8px var(--shadow); transition: box-shadow 0.2s, transform 0.2s;
}
.uv-review-card:hover { box-shadow: 0 6px 24px var(--shadow); transform: translateY(-2px); }
.uv-review-stars { color: #F4622A; font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.uv-review-text { font-size: 15px; color: var(--ink); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.uv-review-author { font-size: 13.5px; font-weight: 700; color: var(--navy); font-family: 'Nunito', sans-serif; }
.uv-review-company { font-size: 12.5px; color: var(--mid); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.uv-faq-list { margin-top: 48px; max-width: 760px; display: grid; gap: 10px; }
.uv-faq-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 10px; overflow: hidden; transition: border-color 0.18s;
}
.uv-faq-item.open { border-color: var(--blue-lt); }
.uv-faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 18px 22px; font-family: 'Nunito', sans-serif;
  font-size: 0.97rem; font-weight: 700; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; transition: background 0.15s;
}
.uv-faq-q:hover { background: var(--bg2); }
.uv-faq-icon {
  width: 26px; height: 26px; background: var(--bg2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; color: var(--blue); transition: transform 0.25s, background 0.15s;
}
.uv-faq-item.open .uv-faq-icon { transform: rotate(45deg); background: var(--blue); color: var(--white); }
.uv-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  font-size: 15px; color: var(--mid); line-height: 1.7;
  padding-right: 22px; padding-left: 22px;
}
.uv-faq-item.open .uv-faq-a { max-height: 400px; padding-bottom: 20px; padding-top: 10px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
#uv-cta { background: linear-gradient(135deg, #1B3A6B 0%, #2D6BB8 100%); }
.uv-cta-inner {
  max-width: 640px; margin: 0 auto; text-align: center;
  padding: var(--section-pad) clamp(20px,4vw,40px);
}
.uv-cta-inner .section-label { background: rgba(255,255,255,0.15); color: #A8CFFF; }
.uv-cta-heading {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.12; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 14px;
}
.uv-cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.uv-cta-wa-wrap { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.uv-cta-wa-btn {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 14px; padding: 16px 20px; color: #fff; text-decoration: none;
  font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 600; line-height: 1.4;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
  backdrop-filter: blur(6px);
}
.uv-cta-wa-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.45); transform: translateY(-2px); color: #fff; }
.uv-cta-wa-icon { font-size: 22px; flex-shrink: 0; }
.uv-cta-note { text-align: center; font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy); color: rgba(255,255,255,0.4);
  padding: 18px clamp(20px,4vw,60px);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px;
}
.uv-footer-logo {
  font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 900;
  color: var(--white); letter-spacing: -0.02em;
}
.uv-footer-logo span { color: var(--blue-lt); font-style: italic; }
.uv-footer-copy { font-size: 12px; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
#uv-wa-wrap {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
#uv-wa-bubble {
  background: var(--white); border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18); padding: 18px 20px;
  width: 290px; display: none; flex-direction: column; gap: 8px;
}
#uv-wa-bubble.open { display: flex; }
.uv-wa-bubble-head {
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 800;
  color: var(--navy); margin-bottom: 4px;
}
.uv-wa-btn {
  display: flex; align-items: flex-start; gap: 10px;
  background: #F0FAF4; border: 1px solid #B2E8D2; border-radius: 10px;
  padding: 11px 13px; font-size: 13px; color: var(--ink); font-weight: 600;
  cursor: pointer; text-decoration: none; line-height: 1.45;
  transition: background 0.15s, border-color 0.15s;
}
.uv-wa-btn:hover { background: #D8F5E6; border-color: #25D366; color: var(--ink); }
.uv-wa-btn-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.uv-wa-float {
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; flex-shrink: 0;
}
.uv-wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.uv-wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .uv-incl-grid { grid-template-columns: 1fr; gap: 48px; }
  .uv-pain-grid { grid-template-columns: 1fr; }
  .uv-reviews-grid { grid-template-columns: 1fr; }
  .uv-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .uv-sam-grid { grid-template-columns: 1fr; gap: 40px; }
  .uv-sam-img-box { max-width: 320px; }
}
@media (max-width: 768px) {
  .uv-nav-links { display: none !important; }
  .uv-nav-cta { display: none !important; }
  .uv-hamburger { display: flex !important; margin-left: auto !important; }
  .uv-feat-grid { grid-template-columns: 1fr; }
  .uv-cf-grid { grid-template-columns: 1fr !important; }
  .uv-paylater { flex-wrap: wrap; }
  .uv-paylater-body { text-align: left; width: 100%; }
  .uv-paylater-amt { width: 100%; text-align: left; }
}
@media (max-width: 640px) {
  .uv-portfolio-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .uv-hero-actions { flex-direction: column; align-items: center; }
  .uv-hero-actions a { width: 100%; justify-content: center; }
}
