/* =========================================================
   UPKEEP CO. — Site Styles
   Brand: #242F6D (navy) | #4CB963 (green)
   ========================================================= */

:root {
  --uc-navy: #242F6D;
  --uc-navy-dark: #1a2252;
  --uc-green: #4CB963;
  --uc-green-dark: #3da352;
  --uc-light-bg: #f7f8fc;
  --uc-text: #2d2d2d;
  --uc-muted: #6c757d;
  --uc-radius: 14px;
  --uc-radius-sm: 8px;
  --uc-shadow: 0 4px 24px rgba(36, 47, 109, 0.10);
  --uc-shadow-lg: 0 8px 40px rgba(36, 47, 109, 0.15);
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--uc-text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ─────────────────────────────────────────── */
.text-uc-green  { color: var(--uc-green) !important; }
.text-uc-navy   { color: var(--uc-navy) !important; }
.text-white-75  { color: rgba(255,255,255,0.78) !important; }
.bg-uc-navy     { background: var(--uc-navy) !important; }
.bg-uc-green    { background: var(--uc-green) !important; }
.uc-heading     { color: var(--uc-navy); }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-uc-green {
  background: var(--uc-green);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(76,185,99,.28);
}
.btn-uc-green:hover {
  background: var(--uc-green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,185,99,.35);
}

.btn-uc-navy {
  background: var(--uc-navy);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(36,47,109,.22);
}
.btn-uc-navy:hover {
  background: var(--uc-navy-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(36,47,109,.32);
}

/* ── BADGES ────────────────────────────────────────────── */
.uc-badge {
  display: inline-block;
  background: rgba(76,185,99,.18);
  color: var(--uc-green);
  border: 1.5px solid rgba(76,185,99,.35);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}
.uc-badge-dark {
  display: inline-block;
  background: rgba(36,47,109,.09);
  color: var(--uc-navy);
  border: 1.5px solid rgba(36,47,109,.18);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ── NAVBAR ────────────────────────────────────────────── */
.uc-navbar {
  background: var(--uc-navy);
  padding: 12px 0;
  box-shadow: 0 2px 16px rgba(36,47,109,.18);
}
.uc-navbar .nav-link {
  color: rgba(255,255,255,.82) !important;
  font-weight: 500;
  font-size: .95rem;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.uc-navbar .nav-link:hover,
.uc-navbar .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,.1);
}

/* ── HERO ──────────────────────────────────────────────── */
.uc-hero {
  background: linear-gradient(135deg, var(--uc-navy) 0%, #1a2252 60%, #2a3a7a 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.uc-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(76,185,99,.13) 0%, transparent 70%);
  pointer-events: none;
}
.uc-hero .hero-shield {
  max-width: 340px;
  filter: drop-shadow(0 12px 40px rgba(76,185,99,.22));
  animation: floatShield 4s ease-in-out infinite;
}
@keyframes floatShield {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ── PAGE HEADER ───────────────────────────────────────── */
.uc-page-header {
  background: linear-gradient(135deg, var(--uc-navy) 0%, #1a2252 100%);
  padding: 70px 0 60px;
}

/* ── SECTIONS ──────────────────────────────────────────── */
.uc-section-light {
  background: var(--uc-light-bg);
  padding: 80px 0;
}
.uc-section-dark {
  background: var(--uc-navy);
  padding: 80px 0;
}

/* ── HOW IT WORKS STEPS ────────────────────────────────── */
.uc-step-card {
  background: #fff;
  border-radius: var(--uc-radius);
  padding: 36px 28px;
  box-shadow: var(--uc-shadow);
  border: 1.5px solid rgba(36,47,109,.07);
  transition: transform .2s, box-shadow .2s;
}
.uc-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--uc-shadow-lg);
}
.uc-step-number {
  width: 56px; height: 56px;
  background: var(--uc-navy);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}

/* ── SERVICE CARDS ─────────────────────────────────────── */
.uc-service-card {
  background: #fff;
  border-radius: var(--uc-radius);
  padding: 32px 28px;
  box-shadow: var(--uc-shadow);
  border: 1.5px solid rgba(36,47,109,.07);
  transition: transform .2s, box-shadow .2s;
}
.uc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--uc-shadow-lg);
}
.uc-service-icon {
  width: 54px; height: 54px;
  background: rgba(76,185,99,.14);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--uc-green);
}

/* ── CHECKLIST ─────────────────────────────────────────── */
.uc-checklist {
  list-style: none;
  padding: 0; margin: 0;
}
.uc-checklist li {
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(36,47,109,.07);
  display: flex; align-items: center;
}
.uc-checklist li:last-child { border-bottom: none; }
.uc-checklist i { font-size: 1.1rem; flex-shrink: 0; }

/* ── PLAN CARDS ────────────────────────────────────────── */
.uc-plan-card {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--uc-radius);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: transform .2s;
  position: relative;
}
.uc-plan-card:hover { transform: translateY(-4px); }
.uc-plan-featured {
  background: rgba(255,255,255,.13);
  border-color: var(--uc-green);
  box-shadow: 0 0 0 2px var(--uc-green), var(--uc-shadow-lg);
  transform: scale(1.02);
}
.uc-plan-featured:hover { transform: scale(1.02) translateY(-4px); }
.uc-plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--uc-green);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.uc-plan-header { margin-bottom: 24px; }
.uc-plan-header h4 { color: #fff; }
.uc-plan-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--uc-green);
  margin-top: 8px;
}
.uc-plan-features {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  flex: 1;
}
.uc-plan-features li {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center;
}
.uc-plan-features li:last-child { border-bottom: none; }
.uc-plan-features i { color: var(--uc-green); flex-shrink: 0; }

/* ── VALUE CARDS ───────────────────────────────────────── */
.uc-value-card {
  background: #fff;
  border-radius: var(--uc-radius);
  padding: 32px 24px;
  box-shadow: var(--uc-shadow);
  border: 1.5px solid rgba(36,47,109,.07);
  transition: transform .2s;
}
.uc-value-card:hover { transform: translateY(-4px); }

/* ── TEAM CARDS ────────────────────────────────────────── */
.uc-team-card {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--uc-radius);
  overflow: hidden;
  transition: transform .2s;
}
.uc-team-card:hover { transform: translateY(-4px); }
.uc-team-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255,255,255,.05);
}
.uc-team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.uc-team-body {
  padding: 28px 28px 32px;
}
.uc-team-body h3 { color: #fff; }
.uc-team-body p  { color: rgba(255,255,255,.72); }

/* ── CONTACT ───────────────────────────────────────────── */
.uc-contact-card {
  background: #fff;
  border-radius: var(--uc-radius);
  padding: 44px 40px;
  box-shadow: var(--uc-shadow-lg);
  border: 1.5px solid rgba(36,47,109,.07);
}
.uc-contact-sidebar {
  background: #fff;
  border-radius: var(--uc-radius);
  padding: 36px 28px;
  box-shadow: var(--uc-shadow);
  border: 1.5px solid rgba(36,47,109,.07);
  height: 100%;
}
.uc-input {
  border-radius: var(--uc-radius-sm) !important;
  border: 1.5px solid #dde1f0 !important;
  padding: 12px 14px !important;
  font-size: .95rem !important;
  transition: border-color .2s, box-shadow .2s !important;
}
.uc-input:focus {
  border-color: var(--uc-navy) !important;
  box-shadow: 0 0 0 3px rgba(36,47,109,.1) !important;
}
.uc-step-mini {
  width: 30px; height: 30px;
  background: var(--uc-navy);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── CTA BANNER ────────────────────────────────────────── */
.uc-cta-banner {
  background: linear-gradient(135deg, var(--uc-navy) 0%, #1a2252 100%);
  padding: 80px 0;
}

/* ── FOOTER ────────────────────────────────────────────── */
.uc-footer {
  background: var(--uc-navy-dark);
  padding: 60px 0 30px;
}
.footer-links { margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--uc-green); }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 767px) {
  .uc-hero        { padding: 60px 0 50px; }
  .uc-section-light,
  .uc-section-dark { padding: 55px 0; }
  .uc-cta-banner  { padding: 55px 0; }
  .uc-contact-card { padding: 28px 20px; }
  .uc-plan-featured { transform: scale(1); }
}
