:root {
  --bg: #0b0c1b;
  --card: rgba(17, 19, 42, 0.9);
  --accent: #a855f7;
  --accent2: #22d3ee;
  --text: #f2f2f2;
  --muted: #b3b3b3;
}

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

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-image:
    linear-gradient(
      rgba(24, 0, 44, 0.78),
      rgba(0, 30, 40, 0.78)
    ),
    url("bg-cars.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  animation: bg-move 45s ease-in-out infinite alternate;
}

/* fundal cu miscare lenta */
@keyframes bg-move {
  from { background-position: center top; }
  to { background-position: center bottom; }
}

/* container general */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER – transparent peste fundal */
.site-header {
  position: relative;
  top: 0;
  background: transparent;
  border: none;
  z-index: 100;
  padding: 2.5rem 0 1rem;
  text-align: center;
}

.site-header h1 {
  color: var(--accent2);
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(34, 211, 238, 0.4);
}

.site-header p {
  color: #e5e5e5;
  max-width: 700px;
  margin: 0.5rem auto 0;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
}

/* HERO */
.hero {
  padding: 2rem 0 4rem;
  background: linear-gradient(
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.25)
  );
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.hero-eyebrow {
  color: var(--accent2);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-content h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--accent);
  text-shadow: 0 0 18px rgba(168, 85, 247, 0.35);
}

.hero-content p {
  margin-bottom: 1.2rem;
  color: var(--text);
}

.hero-highlights {
  list-style: none;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-highlights li::before {
  content: "▹";
  margin-right: 0.4rem;
  color: var(--accent2);
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  color: #0b0c1b;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

/* SECTIUNI */
.section {
  padding: 3rem 0;
}

.section h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  position: relative;
}

.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.section p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.section-form h2::after {
  width: 120px;
}

.form-layout {
  display: grid;
  gap: 2rem;
  align-items: flex-start;
}

.form-text {
  max-width: 520px;
}

/* CARD FORMULAR */
.hero-form-card {
  border-radius: 1.1rem;
  padding: 1.8rem;
  background: var(--card);
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  animation: card-glow 5.5s ease-in-out infinite alternate;
}

.hero-form-card h3 {
  margin-bottom: 0.4rem;
}

.hero-form-card p {
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
}

@keyframes card-glow {
  from {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
    border-color: rgba(168, 85, 247, 0.35);
  }
  to {
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.9);
    border-color: rgba(34, 211, 238, 0.55);
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

form label {
  font-size: 0.86rem;
  color: var(--muted);
}

input,
textarea,
select {
  border-radius: 0.7rem;
  padding: 0.6rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(7, 9, 18, 0.9);
  color: var(--text);
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.9);
  background: rgba(15, 23, 42, 1);
}

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

button {
  margin-top: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #0b0c1b;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}

button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.8);
}

/* STEPS – carduri */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.step {
  border-radius: 1rem;
  padding: 1.2rem;
  background: rgba(15, 17, 35, 0.92);
  border: 1px solid rgba(168, 85, 247, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
}

.step span {
  font-size: 1.4rem;
  color: var(--accent2);
  display: inline-block;
  margin-bottom: 0.3rem;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.7);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.85);
  background: rgba(17, 24, 39, 0.98);
}

/* LISTE */
.bullet-list {
  list-style: none;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bullet-list li {
  color: var(--text);
  font-size: 0.96rem;
}

.bullet-list li::before {
  content: "▹";
  margin-right: 0.5rem;
  color: var(--accent2);
}

/* CONTACT */
.contact-section ul {
  list-style: none;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(11, 12, 27, 0.9);
  border-top: 1px solid rgba(168, 85, 247, 0.25);
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 65px;
  height: 65px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: all 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.07);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  filter: invert(1);
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .hero-content {
    text-align: left;
  }
  .hero-actions {
    justify-content: flex-start;
  }
}

@media (min-width: 768px) {
  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .form-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}
