/* ============================================
   Nexo Landing - Standalone (no GHL)
   ============================================ */

/* Fonts */
@font-face {
  font-family: 'Playfair Display';
  src: url('/assets/fonts/playfair-display.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/roboto.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #FAF7F1;
  color: #1B2A4E;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.wide-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header */
.brand {
  text-align: center;
  margin-bottom: 24px;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #1B2A4E;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.brand-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #1B2A4E;
  text-transform: uppercase;
}

/* Pill banner */
.pill-banner {
  background-color: #1B2A4E;
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* Category chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  border: 1px solid rgba(27, 42, 78, 0.1);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #1B2A4E;
}

.chip::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #22C55E;
  border-radius: 50%;
}

.chip-wrap {
  text-align: center;
  margin-bottom: 40px;
}

/* Headline */
.headline {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #1B2A4E;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.headline .accent-wa {
  color: #22C55E;
}

.headline .accent-ag {
  color: #DC2626;
}

/* CTA card */
.cta-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(27, 42, 78, 0.08);
  border-radius: 16px;
  padding: 24px 32px;
  max-width: 640px;
  margin: 0 auto 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cta-card-bullets {
  text-align: center;
  font-size: 15px;
  color: #1B2A4E;
  margin-bottom: 12px;
  line-height: 1.7;
}

.cta-card-bullets strong {
  font-weight: 500;
}

.cta-card-link {
  display: block;
  text-align: center;
  color: #DC2626;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding-top: 8px;
  border-top: 1px solid rgba(27, 42, 78, 0.08);
  transition: color 0.15s;
}

.cta-card-link:hover {
  color: #B91C1C;
}

/* Video wrapper */
.video-wrap {
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Main CTA button */
.btn-primary {
  display: block;
  width: fit-content;
  min-width: 320px;
  margin: 0 auto 40px;
  background-color: #1B2A4E;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s, transform 0.15s;
}

.btn-primary:hover {
  background-color: #253358;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Form card */
.form-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(27, 42, 78, 0.08);
  border-radius: 12px;
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

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

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1B2A4E;
  margin-bottom: 6px;
}

.form-label .req {
  color: #DC2626;
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1B2A4E;
  background-color: #FFFFFF;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input:focus {
  outline: none;
  border-color: #1B2A4E;
  box-shadow: 0 0 0 3px rgba(27, 42, 78, 0.1);
}

.form-input::placeholder {
  color: #9CA3AF;
}

/* Phone input specific */
.phone-input {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.phone-input .country-code {
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  background-color: #F9FAFB;
  font-size: 15px;
  color: #1B2A4E;
  min-width: 90px;
  text-align: center;
  cursor: default;
}

.phone-input .form-input {
  flex: 1;
}

/* Radio groups */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
}

.radio-item:hover {
  border-color: #1B2A4E;
  background-color: rgba(27, 42, 78, 0.02);
}

.radio-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #D1D5DB;
  border-radius: 50%;
  margin-right: 12px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.15s;
}

.radio-item input[type="radio"]:checked {
  border-color: #1B2A4E;
}

.radio-item input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1B2A4E;
}

.radio-item:has(input[type="radio"]:checked) {
  border-color: #1B2A4E;
  background-color: rgba(27, 42, 78, 0.03);
}

.radio-item label {
  font-size: 15px;
  color: #1B2A4E;
  cursor: pointer;
  flex: 1;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px 24px;
  background-color: #1B2A4E;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s, transform 0.15s;
}

.form-submit:hover {
  background-color: #253358;
}

.form-submit:disabled {
  background-color: #9CA3AF;
  cursor: not-allowed;
  transform: none;
}

.form-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #6B7280;
}

.form-footer a {
  color: #1B2A4E;
  text-decoration: underline;
  margin: 0 4px;
}

/* Section separator */
.divider {
  margin: 48px auto;
  max-width: 200px;
  border: none;
  border-top: 1px solid rgba(27, 42, 78, 0.1);
}

/* Confirmation page specific */
.confirm-headline {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #1B2A4E;
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
  letter-spacing: -0.02em;
}

.confirm-headline .highlight {
  color: #22C55E;
}

.confirm-body {
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
  color: #1B2A4E;
  font-size: 16px;
  line-height: 1.7;
}

.confirm-info {
  text-align: center;
  color: #6B7280;
  font-size: 15px;
  margin: 24px auto;
}

.confirm-list-heading {
  text-align: center;
  font-weight: 600;
  color: #1B2A4E;
  margin: 24px auto 16px;
}

.confirm-list {
  list-style: none;
  padding: 0;
  max-width: 400px;
  margin: 0 auto 48px;
}

.confirm-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #1B2A4E;
  font-size: 15px;
}

.confirm-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #22C55E;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd' /%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.confirm-signature {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(27, 42, 78, 0.1);
}

.confirm-signature-line {
  color: #6B7280;
  font-size: 14px;
  margin-bottom: 12px;
}

.confirm-signature-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  color: #1B2A4E;
  margin-bottom: 4px;
}

.confirm-signature-role {
  font-size: 13px;
  color: #6B7280;
}

/* Agenda page specific */
.agenda-headline {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #1B2A4E;
  text-align: center;
  margin: 40px auto 24px;
  max-width: 800px;
  letter-spacing: -0.02em;
}

.agenda-subheadline {
  text-align: center;
  color: #DC2626;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.agenda-info {
  text-align: center;
  color: #6B7280;
  font-size: 15px;
  margin-bottom: 48px;
}

.cal-embed-wrap {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border: 1px solid rgba(27, 42, 78, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  min-height: 600px;
}

/* Responsive */
@media (max-width: 768px) {
  .brand-name {
    font-size: 36px;
  }
  .headline {
    font-size: 32px;
  }
  .confirm-headline,
  .agenda-headline {
    font-size: 28px;
  }
  .pill-banner {
    font-size: 12px;
    padding: 12px 20px;
    letter-spacing: 0.08em;
  }
  .form-card {
    padding: 24px;
  }
  .container {
    padding: 24px 16px;
  }
  .btn-primary {
    min-width: unset;
    width: 100%;
  }
}
