diff --git a/src/components/ContactForm.tsx b/src/components/ContactForm.tsx
index 53c2f88..157af92 100644
--- a/src/components/ContactForm.tsx
+++ b/src/components/ContactForm.tsx
@@ -92,7 +92,7 @@ export function ContactForm({
id={withPrefix(idPrefix, 'name')}
name="name"
className="w-full px-4 py-3 bg-gray-50 border border-gray-200 rounded-xl focus:outline-none focus:ring-2 focus:ring-blue-500 focus:bg-white transition-all"
- placeholder="Ваше имя"
+ placeholder="Ваше имя *"
defaultValue={prefillValues?.name}
required
/>
@@ -123,7 +123,7 @@ export function ContactForm({
id={withPrefix(idPrefix, 'email')}
name="email"
className="w-full px-4 py-3 bg-gray-50 border border-gray-200 rounded-xl focus:outline-none focus:ring-2 focus:ring-blue-500 focus:bg-white transition-all"
- placeholder="Email"
+ placeholder="Email *"
defaultValue={prefillValues?.email}
required
/>
@@ -137,7 +137,7 @@ export function ContactForm({
id={withPrefix(idPrefix, 'phone')}
name="phone"
className="w-full px-4 py-3 bg-gray-50 border border-gray-200 rounded-xl focus:outline-none focus:ring-2 focus:ring-blue-500 focus:bg-white transition-all"
- placeholder="Телефон"
+ placeholder="Телефон *"
defaultValue={prefillValues?.phone}
required
/>
@@ -151,7 +151,7 @@ export function ContactForm({
{fields.has('purpose') && (