/* Noventa Connect funnel — shared styles for index.html and thankyou.html */

* {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #0f0f0f;
  color: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 580px;
  margin: 0 auto;
  padding: 96px 24px 80px;
  text-align: center;
}

.brand {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 56px;
}

h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.subheadline {
  font-size: 18px;
  color: #b3b3b3;
  margin: 0 0 40px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

input[type="email"] {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  padding: 16px 18px;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s ease;
}

input[type="email"]::placeholder {
  color: #777777;
}

input[type="email"]:focus {
  border-color: #2a78d6;
}

button {
  width: 100%;
  background: #2a78d6;
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  cursor: pointer;
  transition: background 0.15s ease;
}

button:hover {
  background: #2266ba;
}

.trust-line {
  font-size: 13px;
  color: #757575;
  margin-top: 16px;
}

.video-placeholder {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin: 32px 0;
  color: #999999;
  font-size: 15px;
  text-align: center;
}

.section-text {
  font-size: 16px;
  color: #cccccc;
  margin: 0 0 32px;
}

.cal-wrapper {
  background: #ffffff;
  border-radius: 12px;
  padding: 8px;
  margin: 32px 0;
}

.contact-line {
  font-size: 14px;
  color: #888888;
  margin-top: 32px;
}

.contact-line a {
  color: #2a78d6;
  text-decoration: none;
}

.contact-line a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .container {
    padding: 56px 20px 64px;
  }

  .brand {
    margin-bottom: 40px;
  }
}
