:root{
  --bg:#edf7e9;
  --panel:#ffffff;
  --text:#0a0f14;
  --muted:rgba(10,15,20,.65);
  --border:rgba(10,15,20,.12);

  /* Fluorescent green */
  --accent:#39ff14;
  --accentGlow: rgba(57,255,20,.22);

  --radius:16px;
  --max:1100px;
  --pad:clamp(16px, 3vw, 28px);  
  --hero-image: url("helena-lopes-qpimACdCb2I-unsplash.jpg");
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial; 
}


@media (prefers-color-scheme: dark){
  :root{
    --bg:#070a0b;
    --panel:#0f1517;
    --text:#eaf1f1;
    --muted:rgba(234,241,241,.75);
    --border:rgba(234,241,241,.14);

    --accent:#39ff14;
    --accentGlow:rgba(57,255,20,.22);
  }
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background:
    radial-gradient(900px 600px at 25% 10%, var(--accentGlow), transparent 60%),
    var(--bg);
  color:var(--text);
}

.container{width:min(var(--max), calc(100% - 2*var(--pad))); margin:0 auto;}

.topbar{
  position:sticky; top:0; z-index:10;
  padding:12px 0;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.topbar .container{display:flex; gap:12px; align-items:center; justify-content:space-between;}

.brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text); font-weight:800;}
.brand strong{color:var(--accent);}
.dot{
  width:12px; height:12px; border-radius:999px;
  background:var(--accent);
  box-shadow: 0 0 0 6px rgba(57,255,20,.12), 0 0 30px rgba(57,255,20,.35);
}
.hero{
  position: relative;
  overflow: hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.30), rgba(255,255,255,.08)),
    var(--hero-image);
  background-size: cover;
  background-position: center 72%;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero .container{
  position: relative;
  z-index: 1;
}
.hero{padding:54px 0 400px;}
h1{margin:0 0 10px; font-size:clamp(30px, 4.3vw, 52px); line-height:1.05;}
.lead{max-width:65ch; color:rgba(234,241,241,.85); margin:0 0 18px;}

.chips{display:flex; gap:10px; flex-wrap:wrap; margin:0 0 12px;}
.chip{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(57,255,20,.35);
  background:rgba(57,255,20,.08);
}

.hero-services{
  position: absolute;
  left: 24px;
  z-index: 2;
  max-width: 320px;
}

.hero-services-left{
  bottom: -120px;
}

.hero-services-right{
  bottom: -220px;
  right: auto;
}

.hero-svc{
  margin-bottom: 12px;
}

.hero-services-right .hero-svc,
.hero-services-left .hero-svc{
  text-align: left;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(57,255,20,.45);
  background:linear-gradient(180deg, rgba(57,255,20,.18), rgba(57,255,20,.06));
  color:var(--text);
  text-decoration:none;
  font-weight:800;
}
.btn:hover{border-color:rgba(57,255,20,.8); transform:translateY(-1px);}
.section{padding:44px 0;}
.section.dark{
  background:#e2f3da;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
h2{margin:0 0 14px; font-size:clamp(22px, 2.7vw, 34px);}
.muted{color:var(--muted);}
.small{font-size: 13px;}

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
.card{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
}
.card h3{margin:0 0 6px;}
.card p{margin:0; color: var(--muted);}

.form{
  margin-top: 14px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--panel);
}
  label{display:block; font-weight:700; font-size:13px; color:var(--text);}
input, select, textarea{
  width:100%;
  margin-top:6px;
  padding:10px 12px;
  border-radius: 12px;
  border:1px solid rgba(234,241,241,.16);
  background: var(--panel);
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(57,255,20,.6);
  box-shadow: 0 0 0 4px rgba(57,255,20,.12);
}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.check{
  margin: 10px 0 14px;
  display:flex;
  gap:10px;
  align-items:center;
  font-weight: 650;
}
.check input{width:auto; margin:0;}
@media (max-width: 820px){
  .row{grid-template-columns: 1fr;}
  .grid{grid-template-columns: 1fr;}
} 
  :root {
    --bg:#ffffff;
    --panel:#f5f7fa;  
    --text:#0a0f14;
    --muted:rgba(10,15,20,.6);
    --border:rgba(10,15,20,.15);

    --accent:#39ff14;
    --accentGlow:rgba(57,255,20,.18);
  }

  /* Fix hero text visibility in light mode */
@media (prefers-color-scheme: light){
  .hero h1,
  .hero p{
    color:#ffffff;
  }

  .hero .badge{
    color:#ffffff;
  }

  .hero .btn{
    color:#ffffff;
    border-color:#ffffff;
  }

}
.hero{
  position: relative;
}

.hero-dog-label{
    position: absolute;
  top: 46%;
  right: 0px;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 800;
  color: #0a0f14;
  background: none;
  padding: 0;
  text-shadow: none;
}

@media (prefers-color-scheme: light){
  .hero-dog-label{
    color: #0a0f14;
  }
}
.mobile-cta,
.mobile-services{
  display:none;
}

@media (max-width: 820px){
  .mobile-cta{
    display:block;
    background:#fff;
    padding:14px 0 10px;
  }

  .mobile-cta-btn{
    display:block;
    width:100%;
    text-align:center;
    font-size:20px;
    padding:14px 16px;
    border-radius:16px;
  }

  .hero h1,
  .hero-services,
  .chips,
  .hero-dog-label,
  .hero .btn{
    display:none !important;
  }

  .hero{
    padding:0 !important;
    min-height:auto !important;
  }

  .hero .container{
    padding:0 !important;
    max-width:none;
    width:100%;
  }

  .hero::before{
    position:relative;
    display:block;
    content:"";
    width:100%;
    min-height:420px;
    background-image:var(--hero-image);
    background-size:cover;
    background-position:center;
  }

  .mobile-services{
    display:block;
    background:#fff;
    padding:18px 0 28px;
  }

  .mobile-services .container{
    width:min(var(--max), calc(100% - 2*var(--pad)));
    margin:0 auto;
  }

  .mobile-services h2{
    text-align:center;
    margin:0 0 16px;
    font-size:26px;
  }

  .mobile-service-card{
    display:block;
    text-align:center;
    text-decoration:none;
    font-weight:800;
    font-size:18px;
    margin:0 0 12px;
    padding:14px 16px;
    border-radius:16px;
    border:1px solid rgba(57,255,20,.45);
    background:linear-gradient(180deg, rgba(57,255,20,.18), rgba(57,255,20,.06));
    color:var(--text);
  }
}
button:disabled,
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}