/*
  Landing page styles scoped under .landing-page-wrapper to avoid conflicts
  with existing site CSS. Only styles within this container will apply.
*/

:root {
  --lp-bg: #0b0f17;
  --lp-card: #111827;
  --lp-text: #e5e7eb;
  --lp-subtext: #cbd5e1;
  --lp-accent: #06b6d4; /* cyan */
  --lp-accent-2: #22d3ee; /* light cyan */
  --lp-success: #10b981;
  --lp-warning: #f59e0b;
}

/* Base reset inside the wrapper */
.landing-page-wrapper, .landing-page-wrapper * {
  box-sizing: border-box;
}

/* Page container */
.landing-page-wrapper {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  background: radial-gradient(1200px 800px at 10% 0%, rgba(34, 211, 238, 0.08), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(6, 182, 212, 0.08), transparent 60%),
              var(--lp-bg);
  color: var(--lp-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  padding: 2rem 1.25rem 4rem;
}

/************ Hero ************/
.hero-section {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.main-headline {
  font-size: clamp(1.75rem, 2.5vw + 1rem, 3rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
  background: linear-gradient(180deg, #fff, #d1d5db 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub-headline {
  font-weight: 600;
  color: var(--lp-accent-2);
  margin: 0 0 1rem;
}

.intro-text {
  color: var(--lp-subtext);
  max-width: 70ch;
  margin: 0 auto;
}

/************ Form ************/
.form-section {
  display: grid;
  place-items: center;
}

.form-container {
  width: min(680px, 100%);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.form-title {
  margin: 0 0 0.75rem;
}

#landing-page-contact-form {
  display: grid;
  gap: 0.75rem;
}

#landing-page-contact-form input,
#landing-page-contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #0f172a;
  color: #e5e7eb;
}

#landing-page-contact-form input::placeholder,
#landing-page-contact-form textarea::placeholder {
  color: #94a3b8;
}

.cta-button {
  background: linear-gradient(90deg, var(--lp-accent), var(--lp-accent-2));
  color: #001116;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: none;
  padding: 0.95rem 1.2rem;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.1s ease, filter 0.15s ease;
}

.cta-button:hover {
  filter: brightness(1.05);
}

.cta-button:active {
  transform: translateY(1px);
}

/************ Benefits ************/
.benefits-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.benefit-item {
  background: var(--lp-card);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  padding: 1rem 1rem 1.1rem;
  text-align: center;
}

.benefit-item .icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.benefit-item h3 {
  margin: 0.25rem 0 0.25rem;
}

.benefit-item p {
  margin: 0;
  color: var(--lp-subtext);
}

@media (max-width: 900px) {
  .benefits-section {
    grid-template-columns: 1fr;
  }
}
