/* Drop Page Styles - Updated Design */

.md-page-body {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  background: #F7F9FA;
  color: #111827;
}

.md-header {
  background: #F7F9FA;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #E5E7EB;
}

.md-nav-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.md-logo {
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 1.4rem;
  text-decoration: none;
  color: #111827;
  font-weight: 600;
}

.md-nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.md-nav-links a {
  color: #374151;
  text-decoration: none;
  font-size: 0.95rem;
}

.md-cta-button {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #D1D5DB;
  color: #111827;
  text-decoration: none;
  font-size: 0.9rem;
  background: white;
}

.md-drop-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 240px;
}

/* SECTION 1 — HERO */
.md-drop-hero {
  max-width: 960px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 48px;
  align-items: center;
  min-height: 520px;
}

.md-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: #E8EEF2;
  color: #374151;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 32px;
}

.md-drop-title {
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 32px;
  color: #111827;
}

.md-drop-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #374151;
  max-width: 520px;
  margin: 0 0 32px;
  line-height: 1.5;
}

.md-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 12px;
  padding: 0 28px;
  height: 52px;
  border: none;
  background: #3B82F6;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.md-primary-cta:hover {
  background: #2563EB;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.md-cta-note {
  font-size: 18px;
  font-weight: 500;
  color: #6B7280;
  margin-top: 8px;
}

.md-hero-illustration {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.md-hero-illustration img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

/* SECTION 2 — HOW IT WORKS */
.md-how-it-works {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 0;
}

.md-how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.md-how-it-works-item {
  text-align: center;
}

.md-how-it-works-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #4B5563;
  display: flex;
  align-items: center;
  justify-content: center;
}

.md-how-it-works-icon .iconify {
  font-size: 48px;
  color: #4B5563;
}

.md-how-it-works-title {
  font-size: 18px;
  font-weight: 500;
  color: #111827;
  margin: 0 0 16px;
}

.md-how-it-works-subtext {
  font-size: 14px;
  font-weight: 400;
  color: #6B7280;
  margin-top: 16px;
}

/* SECTION 3 — FORM */
.md-drop-form-section {
  max-width: 640px;
  margin: 64px auto 0;
  padding: 40px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.md-drop-form-title {
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 24px;
}

.md-form-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.md-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.md-form-field label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.md-form-field input,
.md-form-field select,
.md-form-field textarea {
  height: 50px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid #D1D5DB;
  background: white;
  color: #111827;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.md-form-field textarea {
  height: auto;
  padding: 12px 16px;
  resize: vertical;
}

.md-form-field input::placeholder,
.md-form-field textarea::placeholder {
  color: #9CA3AF;
}

.md-form-field input:focus,
.md-form-field select:focus,
.md-form-field textarea:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.md-form-field small {
  font-size: 12px;
  color: #6B7280;
  margin-top: 4px;
}

.md-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
}

.md-checkbox-row input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.md-checkbox-row label {
  font-size: 14px;
  font-weight: 400;
  color: #374151;
  line-height: 1.5;
}

.md-form-actions {
  margin-top: 32px;
}

.md-form-actions .md-primary-cta {
  width: 100%;
  justify-content: center;
}

.md-reassurance-text {
  font-size: 12px;
  font-weight: 400;
  color: #6B7280;
  text-align: center;
  margin-top: 12px;
}

.md-status-message {
  font-size: 14px;
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
}

.md-status-success {
  background: #D1FAE5;
  color: #065F46;
}

.md-status-error {
  background: #FEE2E2;
  color: #991B1B;
}

/* SECTION 4 — FAQs */
.md-drop-faq-section {
  max-width: 640px;
  margin: 48px auto 80px;
  padding: 0;
}

.md-faq-title {
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 32px;
}

details.md-faq-item {
  border-radius: 8px;
  padding: 16px;
  background: white;
  border: 1px solid #E5E7EB;
  margin-bottom: 16px;
}

details.md-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #111827;
}

details.md-faq-item summary::-webkit-details-marker {
  display: none;
}

details.md-faq-item summary .iconify {
  font-size: 20px;
  color: #6B7280;
  transition: transform 0.2s;
}

details.md-faq-item[open] summary .iconify {
  transform: rotate(180deg);
}

.md-faq-answer {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #374151;
  line-height: 1.6;
}

/* FOOTER */
.md-footer {
  border-top: 1px solid #E5E7EB;
  padding: 32px 240px;
  background: #F7F9FA;
  color: #6B7280;
}

.md-footer-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.md-footer-logo {
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 1.2rem;
  color: #111827;
  font-weight: 600;
}

.md-footer-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.md-footer-nav a {
  color: #6B7280;
  text-decoration: none;
}

.md-footer-nav a:hover {
  color: #111827;
}

.md-footer-bottom {
  max-width: 960px;
  margin: 16px auto 0;
  font-size: 12px;
  text-align: center;
}

.md-footer-bottom a {
  color: #6B7280;
  text-decoration: none;
}

.md-footer-bottom a:hover {
  color: #111827;
}

/* Remove old hero card styles */
.md-hero-card,
.md-hero-highlights,
.md-hero-pill,
.md-drop-grid,
.md-drop-form-card,
.md-drop-faq-card,
.md-faq-intro {
  display: none;
}

/* Responsive */
@media (max-width: 1440px) {
  .md-drop-main,
  .md-nav-container,
  .md-footer {
    padding-left: clamp(1rem, 5vw, 240px);
    padding-right: clamp(1rem, 5vw, 240px);
  }
}

@media (max-width: 1200px) {
  .md-drop-main,
  .md-nav-container,
  .md-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 1024px) {
  .md-drop-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    margin-top: 48px;
  }

  .md-how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .md-drop-form-section,
  .md-drop-faq-section {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

@media (max-width: 768px) {
  .md-drop-title {
    font-size: 32px;
  }

  .md-drop-subtitle {
    font-size: 18px;
  }

  .md-drop-form-section {
    padding: 24px;
  }
}
