:root {
  --primary: #09b8d7;
  --primary-dark: #189cd2;
  --secondary: #7de7f3;
  --aqua-50: #effdff;
  --aqua-100: #d7f8fc;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #dbeef2;
  --white: #ffffff;
  --soft: #f8fdff;
  --success: #16a34a;
  --warn: #f59e0b;
  --shadow: 0 14px 36px rgba(8, 127, 158, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
}

/* ==============================
   Reset & Base
============================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: #ffffff;
  font-weight: 400;
  line-height: 1.65;
  padding-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 650;
  margin: 18px 0;
}

h2 {
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 620;
  margin-bottom: 12px;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 590;
  margin-bottom: 8px;
}

/* ==============================
   Layout
============================== */
.container {
  max-width: 1180px;
  margin: auto;
  padding: 0 20px;
}

.section {
  padding: 76px 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

/* ==============================
   Top Bar
============================== */
.topbar {
  background: var(--primary-dark);
  color: #eaffff;
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
}

.topbar a {
  font-weight: 500;
}

/* ==============================
   Navbar
============================== */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(12px);
  z-index: 50;
  border-bottom: 1px solid rgba(219, 238, 242, 0.8);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Logo image replacement */
.site-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.03);
}

/* Old logo mark support, safe to keep if used in footer or older pages */
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(9, 184, 215, 0.24);
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
  margin-top: -3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--aqua-50);
  color: var(--primary-dark);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hamb {
  display: none;
  border: 0;
  background: #e9fbff;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font-size: 22px;
  color: var(--primary-dark);
}

/* ==============================
   Buttons
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(9, 184, 215, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-light {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: var(--line);
}

.btn-ghost {
  background: var(--aqua-50);
  color: var(--primary-dark);
  border-color: var(--aqua-100);
}

.btn-success {
  background: #17b866;
  color: #ffffff;
}

.btn-sm {
  padding: 9px 14px;
  font-size: 14px;
}

/* ==============================
   Hero Section
============================== */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 8%, #bff8ff 0, #ffffff 35%, #effdff 100%);
  padding: 62px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(8, 127, 158, 0.07);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-stat {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(8, 127, 158, 0.08);
}

.mini-stat strong {
  display: block;
  font-size: 20px;
  font-weight: 650;
  color: var(--primary-dark);
}

.mini-stat span {
  font-size: 13px;
  color: var(--muted);
}

/* Updated Hero PNG Image - No Form */
.hero-visual {
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-png {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 26px;
}

/* ==============================
   Forms
============================== */
.form-grid {
  display: grid;
  gap: 10px;
}

.input,
.select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfeff;
  border-radius: 13px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  outline: none;
}

.input:focus,
.select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(9, 184, 215, 0.12);
}

/* ==============================
   Section Header
============================== */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head p {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 0;
}

/* ==============================
   Logos / Brand Chips
============================== */
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.logo-chip {
  height: 74px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 650;
  color: #334155;
  box-shadow: 0 8px 18px rgba(8, 127, 158, 0.05);
}

/* ==============================
   Grids
============================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ==============================
   Cards
============================== */
.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 24px rgba(8, 127, 158, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(8, 127, 158, 0.14);
  border-color: rgba(9, 184, 215, 0.28);
}

/* Premium Service Cards */
.service-card {
  padding: 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: #ffffff;
}

.service-card:hover .card-img img {
  transform: scale(1.045);
}

.card-img {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, var(--aqua-50));
  border-radius: 24px 24px 0 0;
}



.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #ffffff;
}

.card-body .tag {
  align-self: flex-start;
  margin-top: -44px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 1px solid var(--aqua-100);
  box-shadow: 0 8px 18px rgba(8, 127, 158, 0.1);
}

.card-body h3 {
  margin: 0 0 12px;
  line-height: 1.28;
  color: var(--ink);
}

.card-body p {
  margin: 0 0 18px;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--aqua-50);
  color: var(--primary-dark);
  font-weight: 650;
  font-size: 12px;
  line-height: 1;
}

.features {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: grid;
  gap: 10px;
}

.features li {
  font-size: 14px;
  color: #52677e;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.features li::before {
  content: "✓";
  color: var(--primary-dark);
  font-weight: 800;
  flex: 0 0 auto;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--aqua-50), #ffffff);
  border: 1px solid var(--line);
  font-size: 24px;
  margin-bottom: 14px;
}

/* ==============================
   Product Category Cards
============================== */
.category-card {
  text-align: center;
  padding: 18px;
}

.category-card img {
  height: 100px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 12px;
}

.category-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}

/* ==============================
   Split Sections / Why V Care
============================== */
.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

/* Premium image panel for wide lifestyle/service ecosystem image */
.image-panel {
  position: relative;
  min-height: auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 18% 15%, rgba(125, 231, 243, 0.22), transparent 34%),
    linear-gradient(135deg, #f2fdff 0%, #ffffff 100%);
  border: 1px solid rgba(9, 184, 215, 0.18);
  border-radius: 34px;
  box-shadow:
    0 24px 60px rgba(8, 127, 158, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
  z-index: 2;
}

.image-panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(9, 184, 215, 0.08);
  pointer-events: none;
}

.image-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

/* Premium checks for Why V Care section */
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 238, 242, 0.95);
  border-radius: 18px;
  padding: 16px 18px;
  color: #26384d;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 10px 26px rgba(8, 127, 158, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.check:hover {
  transform: translateY(-2px);
  border-color: rgba(9, 184, 215, 0.28);
  box-shadow: 0 16px 34px rgba(8, 127, 158, 0.11);
}

.check::before {
  content: "✓";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(9, 184, 215, 0.22);
  margin-right: 0;
}

/* ==============================
   Process
============================== */
.process {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 62px;
}

.step:not(:last-child) {
  margin-bottom: 22px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--primary);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.step p {
  color: var(--muted);
  margin: 0;
}

/* ==============================
   Area List
============================== */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: #475569;
  font-size: 14px;
}

/* ==============================
   Reviews
============================== */
.review {
  position: relative;
}

.stars {
  color: #f59e0b;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.review p {
  color: #475569;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

/* ==============================
   FAQ
============================== */
.faq details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  color: var(--muted);
  margin: 12px 0 0;
}

/* ==============================
   CTA Band
============================== */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  border-radius: 34px;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  position: relative;
}

.cta-band h2 {
  margin-bottom: 8px;
}

.cta-band p {
  color: #e7fbff;
  margin: 0;
}

/* ==============================
   Footer
============================== */
.footer {
  background: #082f3a;
  color: #d8f7fb;
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer h4 {
  color: #ffffff;
  margin-bottom: 14px;
}

.footer a,
.footer p,
.footer li {
  color: #b9dce2;
  font-size: 14px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer .brand small {
  color: #b9dce2;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 20px;
  color: #9cc8cf;
  font-size: 13px;
  text-align: center;
}

/* ==============================
   Floating Buttons
============================== */
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  color: #ffffff;
  font-size: 22px;
}

.float-call {
  background: var(--primary-dark);
}

.float-wa {
  background: #25d366;
}

.mobile-bar {
  display: none;
}

/* ==============================
   Inner Pages
============================== */
.page-hero {
  background: linear-gradient(135deg, var(--aqua-50), #ffffff);
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.content-block {
  max-width: 870px;
}

.product-card .price {
  font-weight: 650;
  color: var(--primary-dark);
  margin: 10px 0;
}

.table-wrap {
  overflow: auto;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.service-table th,
.service-table td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.service-table th {
  background: var(--aqua-50);
  color: var(--primary-dark);
  font-weight: 650;
}

/* ==============================
   Responsive - Large Desktop
============================== */
@media (min-width: 1200px) {
  .site-logo {
    height: 78px;
  }
}

/* ==============================
   Responsive - Laptop
============================== */
@media (max-width: 1199px) {
  .site-logo {
    height: 68px;
  }
}

/* ==============================
   Responsive - Tablet
============================== */
@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamb {
    display: block;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-logo {
    height: 60px;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    text-align: center;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 10px;
  }

  .hero-png {
    max-width: 420px;
    margin: auto;
  }

  .image-panel {
    padding: 12px;
    border-radius: 28px;
    max-width: 760px;
    margin: 0 auto;
  }

  .image-panel::before {
    inset: 12px;
    border-radius: 20px;
  }

  .image-panel img {
    border-radius: 20px;
  }

  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-img {
    height: 300px;
  }

  .logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ==============================
   Responsive - Mobile
============================== */
@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .topbar {
    display: none;
  }

  .nav-wrap {
    height: 68px;
  }

  .site-logo {
    height: 50px;
    max-width: 220px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 15px;
  }

  .hero {
    padding: 34px 0;
  }

  .hero-grid {
    gap: 24px;
  }

  h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr 1fr;
  }

  .hero-png {
    max-width: 100%;
    border-radius: 20px;
  }

  .section-head {
    display: block;
  }

  .image-panel {
    padding: 10px;
    border-radius: 24px;
  }

  .image-panel::before {
    inset: 10px;
    border-radius: 17px;
  }

  .image-panel img {
    border-radius: 17px;
  }

  .check {
    min-height: 58px;
    padding: 14px 15px;
    font-size: 15px;
  }

  .grid-3,
  .grid-4,
  .check-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-img {
    height: 260px;
  }

  .section {
    padding: 46px 0;
  }

  .floating-actions {
    display: none;
  }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    background: #ffffff;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0 -8px 26px rgba(8, 127, 158, 0.12);
  }

  .mobile-bar a {
    display: grid;
    place-items: center;
    gap: 2px;
    padding: 9px 4px;
    font-size: 12px;
    color: #334155;
    font-weight: 600;
  }

  .mobile-bar b {
    font-size: 20px;
  }

  .cta-band {
    border-radius: 24px;
    padding: 26px;
  }

  .page-hero {
    padding: 38px 0;
  }
}

/* ==============================
   Responsive - Small Mobile
============================== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .site-logo {
    height: 42px;
    max-width: 180px;
  }

  h1 {
    font-size: 32px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .logos {
    grid-template-columns: 1fr;
  }

  .image-panel {
    padding: 8px;
    border-radius: 20px;
  }

  .image-panel::before {
    inset: 8px;
    border-radius: 14px;
  }

  .image-panel img {
    border-radius: 14px;
  }

  .check {
    align-items: flex-start;
  }

}

.footer-products {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-products li {
  margin-bottom: 6px;
}

.footer-products a {
  font-size: 13px;
  line-height: 1.4;
  display: block;
}

/* Reduce overall footer text size */
.footer {
  font-size: 14px;
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.footer ul li {
  font-size: 13px;
  margin-bottom: 6px;
}

.footer p {
  font-size: 13px;
  line-height: 1.6;
}

.copyright {
  font-size: 12px;
}
.logos {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}