:root{
  --bg: #ffffff;
  --text: #0b1220;
  --muted: #52607a;

  /* Light blue / light green vibe */
  --primary: #22c55e;
  --primary-2: #86efac;

  --card: #f6fbff;
  --border: rgba(11,18,32,.10);
  --shadow: 0 10px 30px rgba(11,18,32,.08);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--shadow);
}
.brand-name{ font-weight: 800; letter-spacing: -0.02em; }

.nav{ display:flex; align-items:center; }
.nav-toggle{
  display:none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
}
.burger{
  display:block;
  width: 18px; height: 2px;
  background: var(--text);
  position: relative;
}
.burger::before,.burger::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;height:2px;
  background: var(--text);
}
.burger::before{ top: -6px; }
.burger::after{ top: 6px; }

.nav-menu{
  list-style:none;
  margin:0;padding:0;
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav-menu a{
  color: var(--muted);
  font-weight: 600;
}
.nav-menu a:hover{ color: var(--text); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 700;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active{ transform: translateY(0); box-shadow: none; }

.btn-primary{
  color: #06202a;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}
.btn-ghost{ background: #fff; color: var(--text); }
.btn-block{ width:100%; }

.hero{
  padding: 64px 0 34px;
  background:
    radial-gradient(700px 260px at 10% 10%, rgba(48,182,216,.18), transparent 60%),
    radial-gradient(700px 260px at 90% 30%, rgba(103,211,177,.18), transparent 60%);
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 24px;
  align-items: start;
}

.pill{
  display:inline-block;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  color: var(--muted);
  font-weight: 600;
}

.hero h1{
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin: 14px 0 10px;
}
.hero-sub{
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 18px;
  max-width: 60ch;
}
.hero-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.hero-trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 10px;
}
.trust-item{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 12px;
  background: rgba(255,255,255,.7);
}
.trust-item strong{ display:block; }
.trust-item span{ color: var(--muted); font-size: 13px; }

.hero-card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow);
  padding: 18px;
}
.hero-card h2{ margin: 0 0 4px; }
.contact-lines{ display:flex; flex-direction:column; gap: 10px; margin: 14px 0 14px; }
.contact-line{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
}
.icon{ width: 22px; text-align:center; }
.hero-card-actions{ display:grid; gap: 10px; }

.section{ padding: 54px 0; }
.section.alt{
  background:
    radial-gradient(800px 260px at 20% 10%, rgba(48,182,216,.12), transparent 55%),
    radial-gradient(800px 260px at 80% 30%, rgba(103,211,177,.12), transparent 55%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head{ margin-bottom: 18px; }
.section-head h2{
  margin: 0;
  letter-spacing: -0.03em;
  font-size: 28px;
}
.muted{ color: var(--muted); }
.fineprint{ color: var(--muted); font-size: 12px; margin: 10px 0 0; }

.grid{ display:grid; gap: 14px; }
.cards{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 16px;
}
.card h3{ margin: 0 0 8px; letter-spacing: -0.02em; }
.card p{ margin: 0; color: var(--muted); }

.steps{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.8);
  padding: 16px;
}
.step-num{
  display:inline-flex;
  align-items:center; justify-content:center;
  width: 32px; height: 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 800;
  color: #06202a;
}
.step h3{ margin: 10px 0 6px; }
.step p{ margin: 0; color: var(--muted); }

.pricing{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.8);
  padding: 16px;
  position: relative;
}
.price-card ul{ margin: 12px 0 16px; padding-left: 18px; color: var(--muted); }
.price-card li{ margin: 8px 0; }
.price{ font-size: 34px; margin: 10px 0 0; letter-spacing: -0.03em; }
.price span{ font-size: 14px; color: var(--muted); font-weight: 600; }
.featured{
  box-shadow: var(--shadow);
  border: 1px solid rgba(48,182,216,.35);
}
.badge{
  position:absolute;
  top: 14px; right: 14px;
  font-size: 12px;
  font-weight: 800;
  color: #06202a;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  padding: 6px 10px;
  border-radius: 999px;
}

.book-box{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.85);
  padding: 18px;
  box-shadow: var(--shadow);
}
.book-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

.contact-grid{
  grid-template-columns: .9fr 1.1fr;
  align-items:start;
}
.contact-chip{
  display:block;
  margin: 10px 0;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  font-weight: 650;
}
.contact-form{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.85);
  padding: 16px;
  box-shadow: var(--shadow);
}
label{ display:block; font-weight: 700; margin-bottom: 10px; }
input, textarea{
  width:100%;
  margin-top: 8px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font: inherit;
}
textarea{ resize: vertical; }

.center{ text-align:center; }
.mt-16{ margin-top: 16px; }
.mt-24{ margin-top: 24px; }

.footer{
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 14px;
  text-align:center;
}
.footer-links{ display:flex; gap: 14px; }
.footer-links a{ color: var(--muted); font-weight: 650; }
.footer-links a:hover{ color: var(--text); }

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-trust{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .nav-toggle{ display:inline-flex; }
  .nav-menu{
    display:none;
    position:absolute;
    right: 20px;
    top: 64px;
    flex-direction:column;
    align-items:stretch;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    width: min(320px, calc(100vw - 40px));
    box-shadow: var(--shadow);
  }
  .nav-menu.open{ display:flex; }
  .nav-cta{ margin-top: 6px; }
  .cards{ grid-template-columns: 1fr; }
  .card-link { cursor: pointer; }
  /* Smooth hover animation for service cards */
.../* Smooth hover animation for service cards */
.card{
  transition: transform .25s ease,
              box-shadow .25s ease,
              border-color .25s ease,
              background .25s ease;
  will-change: transform;
  cursor: pointer;
}

.card:hover{
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,.15);
  border-color: var(--primary);
  background: rgba(255,255,255,.95);
  /* Universal hover animation for all main-page boxes */
.card,
.step,
.price-card,
.hero-card,
.book-box,
.contact-form{
  transition: transform .25s ease,
              box-shadow .25s ease,
              border-color .25s ease,
              background .25s ease;
  will-change: transform;
}

.card:hover,
.step:hover,
.price-card:hover,
.hero-card:hover,
.book-box:hover,
.contact-form:hover{
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,.15);
  border-color: var(--primary);
  background: rgba(255,255,255,.95);
}

/* Keep accessibility */
@media (prefers-reduced-motion: reduce){
  .card, .step, .price-card, .hero-card, .book-box, .contact-form{
    transition:none;
  }
  .card:hover, .step:hover, .price-card:hover, .hero-card:hover, .book-box:hover, .contact-form:hover{
    transform:none;
  }
  /* Center footer menu */
  .section 
  { scroll-margin-top: 100px; }
}/* HIPAA badge */
.hipaa-badge{
  border: 1px solid var(--primary);
  background: rgba(14,165,233,.08);
  border-radius: 12px;
  padding: 10px 14px;
}

.hipaa-badge strong{
  color: var(--primary);
}
/* Scroll reveal animation (stronger) */
.reveal{
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  filter: blur(6px);
  transition: opacity .55s ease, transform .55s ease, filter .55s ease;
}

.reveal.active{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.footer-links ul{
  list-style: none;
  padding: 0;
}

.footer-links li{
  margin: 10px 0;
  position: relative;
  padding-left: 18px;
}

.footer-links li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.footer-links a{
  text-decoration: none;
}

.footer-links a:hover{
  color: var(--primary);
}
}
/* Move footer to right */
.footer{
  display: flex;
  justify-content: flex-end; /* pushes content to right */
  padding: 30px 40px;
}

/* Bullet list styling */
.footer-links ul{
  list-style: none;
  padding: 0;
  text-align: right;
}

.footer-links li{
  margin: 10px 0;
  position: relative;
  padding-right: 18px;
}

/* Custom bullet on right side */
.footer-links li::after{
  content: "•";
  position: absolute;
  right: 0;
  color: var(--primary);
  font-weight: bold;
}
.footer-links a{
  font-size: 16px;   /* increase this if you want bigger */
  font-weight: 500;
  text-decoration: none;
}

.footer-links a:hover{
  color: var(--primary);
}
/* Force footer to right */
.footer {
  display: flex !important;
  justify-content: flex-end !important;
  width: 100% !important;
  padding: 30px 60px !important;
}

.footer-links {
  text-align: right !important;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 10px 0;
  position: relative;
  padding-right: 18px;
}

.footer-links li::after {
  content: "•";
  position: absolute;
  right: 0;
  color: var(--primary);
  font-weight: bold;
}

.footer-links a {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
/* Move footer content to right */
.footer-inner{
  display: flex;
  justify-content: flex-end; /* pushes to right */
}

.footer-links{
  text-align: right;
}

/* Bullet styling */
.footer-links ul{
  list-style: none;
  padding: 0;
}

.footer-links li{
  margin: 10px 0;
  position: relative;
  padding-right: 18px;
}

.footer-links li::after{
  content: "•";
  position: absolute;
  right: 0;
  color: var(--primary);
  font-weight: bold;
}

.footer-links a{
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
/* =========================
   MOBILE FIX PACK
   ========================= */
@media (max-width: 900px){
  .container{
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Hero: switch to 1 column */
  .hero-inner{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* Big headline smaller */
  .hero h1{
    font-size: clamp(32px, 7vw, 44px) !important;
    line-height: 1.05 !important;
  }

  .pill{
    font-size: 14px !important;
  }

  /* Buttons stack nicely */
  .hero-actions{
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn{
    width: 100%;
    justify-content: center;
  }

  /* Grids: force 1 column on mobile */
  .grid.cards,
  .grid.steps,
  .grid.pricing,
  .grid.contact-grid{
    grid-template-columns: 1fr !important;
  }

  /* Cards: reduce padding a bit */
  .card, .step, .price-card, .hero-card, .book-box, .contact-form{
    padding: 16px !important;
  }

  /* Pricing badge spacing */
  .price-card .badge{
    margin-bottom: 10px;
  }

  /* Footer bullets: don’t push right on small screens */
  .footer-inner{
    justify-content: center !important;
  }
  .footer-links{
    text-align: center !important;
  }
  .footer-links ul{
    display: inline-block; /* keeps list centered */
    text-align: left;      /* bullets look neat */
  }
}

/* Extra small phones */
@media (max-width: 420px){
  .hero h1{
    font-size: 30px !important;
  }
  .hero-sub{
    font-size: 15px !important;
  }
}
/* Mobile menu behavior */
@media (max-width: 900px){
  .nav-menu{
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    margin-top: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,.95);
  }

  .nav-menu.open{
    display: flex;
  }

  .nav-toggle{
    display: inline-flex;
  }
}

/* On desktop, show menu and hide burger */
@media (min-width: 901px){
  .nav-menu{
    display: flex;
  }
  .nav-toggle{
    display: none;
  }
}
}