/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap: var(--gap-1);
  color: var(--brown);
}
.nav a{
  padding: 10px 10px;
  border-radius: 12px;
}
.nav a:hover{ background: rgba(63,143,139,.08); }

.nav-toggle{
  display:none;
  width: 44px; height: 44px;
  border: 1px solid rgba(110, 50, 0, 0.884);
  background: var(--card);
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.nav-toggle span{
  display:block;
  width: 18px; height: 2px;
  background: var(--brown);
  margin: 5px auto;
  border-radius: 99px;
}

@media (max-width: 760px){

  .nav a{
    transition: background .15s ease, transform .12s ease;
  }

  /* Tap highlight */
  .nav a:active{
    background: rgba(63,143,139,.10);
    transform: scale(.985);
  }

  /* Keyboard accessibility */
  .nav a:focus-visible{
    outline: none;
    background: rgba(63,143,139,.12);
  }

}


/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--teal);
  color:#fff;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 18px rgba(63,143,139,.18);
}
.btn:hover{ background: var(--teal-dark); }
.btn:focus-visible{ box-shadow: 0 0 0 4px var(--ring), 0 10px 18px rgba(63,143,139,.18); }

.btn-small{ padding: 10px 12px; border-radius: 12px; }
.btn-wide{ width:100%; }

.btn-ghost{
  background: transparent;
  color: var(--teal-dark);
  box-shadow: none;
  border: 1px solid rgba(63,143,139,.35);
}
.btn-ghost:hover{ background: rgba(63,143,139,.08); }

/* Pills */
.pill{
  display:inline-flex;
  align-items:center;
  margin-bottom: 2em;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(227,154,69,.14);
  color: var(--brown);
  font-weight: var(--w-medium);
  letter-spacing: 0.01em;
  border: 1px solid rgba(227,154,69,.25);
}

.subhead{
  margin: var(--gap-1) 0 var(--gap-2);
  color: var(--muted);
  max-width: 52ch;
  font-size: clamp(15px, 1.6vw, 17px);
}

/* Cards */
.surface{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
}

.card,
.steps li,
.price-card,
.mini{
  background: rgba(255,255,255,.75);;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: var(--pad-2);
}

.price-card h3 {
  font-size: 1.2rem;
  text-align: center;
}

.hero-card{
  margin-top: 2em;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  padding: var(--pad-2);
}


.trust-item{
  border: .01rem solid rgba(77, 41, 0, 0.521);
  border-radius: 7px;
  padding: .5em;
  font-size: 1em;
  text-align: center;
  width: 18%;
  height: 10%;
}
.trust-item strong{
  font-weight: var(--w-bold);
  letter-spacing: -0.01em;
}

.trust-item span{
  line-height: 1.35;
  display:block;
  color: var(--muted);
  font-size: .7rem;
  margin-top: 0;
}


/* Pricing */
.price-card.featured{
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(63, 143, 139, 0.692);
}


.tag{
  display:inline-block;
  margin: 0 0 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--teal-dark);
  background: rgba(63,143,139,.12);
  border: 1px solid rgba(63,143,139,.22);
}

.price-card.featured .tag{
  display: table;
  margin: 0 auto 10px;
}


.price{
  margin: 6px 0 10px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  text-align: center;
  color: var(--brown);
}
.dollar{ color: var(--orange-dark); }

.price-card ul{
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
}
.price-card li{ margin: 6px 0; }

.pricing-note{
  margin-top: var(--gap-2);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: var(--pad-2);
}

/* Forms */
.form{ margin-top: 10px; display:grid; gap: var(--gap-1); }

.field{ display:grid; gap: 6px; }
label{ font-weight: 700; color: var(--brown); font-size: .9rem; }

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-1);
}

input, select, textarea{
  padding: clamp(10px, 1.4vw, 12px);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  font-size: 1rem;
}
textarea{ resize: vertical; min-height: 70px; }

input:focus, select:focus, textarea:focus{
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
  border-color: rgba(63,143,139,.45);
}

.fieldset{
  padding: var(--pad-1);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.55);
}
.fieldset legend{
  padding: 0 6px;
  font-weight: 800;
  color: var(--brown);
  font-size: .9rem;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check{
  display:flex;
  align-items:center;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  padding: 8px 10px;
}
.check span {
  font-size: 0.9rem;
}
.check input{ margin-top: 3px; }
.hint{ margin-top: 6px; font-size: .85rem; }

.error{
  min-height: 14px;
  color: #9b2c2c;
  font-size: .8rem;
}

.toast{
  margin-top: 6px;
  display:none;
  background: rgba(63,143,139,.10);
  border: 1px solid rgba(63,143,139,.28);
  color: var(--teal-dark);
  padding: 10px 12px;
  border-radius: 14px;
}

/* Contact strip */
.contact-strip{
  margin-top: var(--gap-1);
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.contact-item{
  display:flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.06);
}
.contact-item:hover{ background: rgba(255,255,255,.85); }

.ci-label{ font-size: .82rem; color: var(--muted); }
.ci-value{ font-weight: 800; color: var(--brown); font-size: .98rem; line-height: 1.2; }

/* Back to top */
.backtop{
  padding: 8px 10px;
  border-radius: 12px;
}
.backtop:hover{ background: rgba(227,154,69,.14); }


/* Responsive helpers */
@media (max-width: 920px){
  .two-col{ grid-template-columns: 1fr; }
  .checks{ grid-template-columns: 1fr; }
  .contact-strip{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .nav-toggle{ display:inline-block; }
  .nav{
    display:none;
    position:absolute;
    right: 20px;
    top: 70px;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    min-width: 210px;
  }
  .nav.open{ display:flex; }
  .nav a{ padding: 12px 12px; }
}


/* ==========================
   How it works – calm flow
========================== */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 18px 0 22px;
  background: transparent;
  border: none;
  border-radius: 0;
}

/* subtle divider */
.steps li:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,.08);
}

/* step title */
.steps li strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 4px;
}

/* step description */
.steps li span {
  color: var(--muted);
  max-width: 60ch;
  display: block;
}

/* arrow between steps */
.steps li:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 0;
  bottom: -26px;
  font-size: 30px;
  font-weight: 900;
  color: rgba(63,143,139,.55);
}

.steps li:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 0;
  bottom: -22px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  color: rgba(63, 143, 139, 0.534);
}


/* ==========================
   Services – calm list style
========================== */

#services .cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

#services .card{
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 14px 0;
}

/* subtle divider between services */
#services .card:not(:last-child){
  border-bottom: 1px solid rgba(0,0,0,.08);
}

/* service titles */
#services .card h3{
  font-size: 1rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 4px;
}

/* service descriptions */
#services .card{
  padding-left: 14px;
  border-left: 3px solid rgba(63,143,139,.25);
}


/* ==========================
   Contact – calm layout
========================== */

.contact-actions{
  display:flex;
  gap: .1rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.25rem;
}

.contact-list{
  margin: 0;
  padding: 0;
  display: grid;
  max-width: 70ch;
}

.contact-list > div{
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.contact-list > div:last-child{
  border-bottom: none;
}

.contact-list dt{
  font-size: .85rem;
  color: var(--muted);
  font-weight: 700;
}

.contact-list dd{
  margin: 2px 0 0;
  color: var(--brown);
  font-weight: 800;
  line-height: 1.35;
}

.contact-list a{
  text-decoration: none;
}

.contact-list a:hover{
  text-decoration: underline;
}


@media (max-width: 640px){
  .trust{
    justify-content: center;
    text-align: center;
    margin-top: 2em;
  }
  .trust-item
  {
    width: 30%;
    height: auto;
  }
}





