* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
  radial-gradient(circle at top left, rgba(236, 72, 153, 0.15), transparent 35%),
  radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.12), transparent 35%);
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 80px;
  align-items: center;
  padding: 60px 40px;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo {
  width: 320px;
  max-width: 100%;
  margin-bottom: 40px;
  filter: drop-shadow(0 0 40px rgba(236, 72, 153, 0.3));
}

.tag {
  color: #f472b6;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(2rem, 7vw, 5rem);
  line-height: 0.95;
  font-weight: 900;
  margin-bottom: 30px;
}

h1 span {
  color: #f472b6;
  display: block;
}

.description {
  color: #d4d4d8;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 650px;
  margin-bottom: 40px;
}

.description strong {
  color: #f472b6;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service {
  padding: 14px 22px;
  border-radius: 20px;
  border: 1px solid #27272a;
  background: rgba(24, 24, 27, 0.8);
  color: #d4d4d8;
  backdrop-filter: blur(12px);
}

.contact-card {
  position: relative;
  background: rgba(9, 9, 11, 0.85);
  border: 1px solid #27272a;
  border-radius: 32px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(236, 72, 153, 0.12);
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 32px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(236,72,153,0.4), transparent);
  -webkit-mask:
  linear-gradient(#fff 0 0) content-box,
  linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.contact-card h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.contact-card p {
  color: #a1a1aa;
  margin-bottom: 35px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 22px;
}

label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #e4e4e7;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid #3f3f46;
  background: #18181b;
  color: white;
  font-size: 1rem;
  transition: all 0.25s ease;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #f472b6;
  box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.15);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

button {
  width: 100%;
  border: none;
  border-radius: 18px;
  padding: 18px;
  background: #f472b6;
  color: black;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(244, 114, 182, 0.3);
}

button:hover {
  background: #fb92c6;
  transform: translateY(-2px);
}

.footer {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #27272a;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #71717a;
  display: block; 
  text-align: right;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .container {
    gap: 50px;
    padding: 40px 24px;
  }

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

  .services {
    justify-content: center;
  }

  .contact-card {
    padding: 30px;
  }
} 

.status {
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.9; 
  transition: opacity 0.2s ease;
}

.status.success {
  color: #4ade80;
}

.status.error {
  color: #f87171;
} 

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.field-error {
  font-size: 12px;
  color: #f87171;
  margin-top: 4px;
}