/* Latha Jandhyala funnel pages, brand palette shared with www.lathajandhyala.com */

:root {
  --saffron-50: #FFF7EF;
  --saffron-100: #FEECDA;
  --saffron-200: #FCD5B0;
  --saffron-400: #F9A55E;
  --saffron-500: #F79A4D;
  --saffron-600: #E07B2A;
  --saffron-700: #B95F1B;
  --cream: #FDF9F3;
  --ink: #221E1A;
  --ink-60: rgba(34, 30, 26, 0.6);
  --ink-40: rgba(34, 30, 26, 0.4);
  --ink-10: rgba(34, 30, 26, 0.1);
  --midnight-900: #171438;
  --shadow-soft: 0 10px 40px -12px rgba(34, 30, 26, 0.15);
  --shadow-lift: 0 20px 50px -20px rgba(224, 123, 42, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Nunito Sans", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  padding: 22px 0 10px;
  text-align: center;
}
.site-header img {
  height: 74px;
  width: auto;
}

/* Hero / sections */
.hero {
  text-align: center;
  padding: 28px 0 56px;
}
.eyebrow {
  display: inline-block;
  background: var(--saffron-100);
  color: var(--saffron-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(30px, 5.4vw, 48px);
  max-width: 820px;
  margin: 0 auto 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--saffron-600);
}
.hero .sub {
  font-size: clamp(17px, 2.4vw, 20px);
  color: var(--ink-60);
  max-width: 640px;
  margin: 0 auto;
}

/* Check list card */
.card {
  background: #ffffff;
  border: 1px solid var(--ink-10);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 34px 34px;
  text-align: left;
  max-width: 680px;
  margin: 36px auto 0;
}
.card h2 { font-size: 24px; margin-bottom: 18px; text-align: center; }
.checklist { list-style: none; }
.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 17px;
  color: rgba(34, 30, 26, 0.78);
}
.checklist .tick {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--saffron-100);
  color: var(--saffron-700);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--saffron-600);
  color: #ffffff;
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 18px 42px;
  cursor: pointer;
  box-shadow: var(--shadow-lift);
  transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: var(--saffron-700); transform: translateY(-2px); }
.btn.big { font-size: 20px; padding: 20px 52px; }
.btn-row { margin-top: 34px; }
.btn-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-40);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 20, 56, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 50;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--cream);
  border-radius: 24px;
  max-width: 460px;
  width: 100%;
  padding: 34px 30px;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-soft);
}
.modal h2 { font-size: 24px; text-align: center; margin-bottom: 8px; }
.modal .qualifier {
  font-size: 13px;
  color: var(--ink-60);
  background: var(--saffron-50);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 16px 0 6px;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: 0;
  font-size: 26px;
  line-height: 1;
  color: var(--ink-40);
  cursor: pointer;
}
.modal-close:hover { color: var(--ink); }

/* Forms */
.field { margin-top: 16px; text-align: left; }
label.lbl {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(34, 30, 26, 0.18);
  border-radius: 14px;
  padding: 13px 16px;
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--saffron-500);
  box-shadow: 0 0 0 3px rgba(247, 154, 77, 0.25);
}
textarea { min-height: 110px; resize: vertical; }
.form-submit { margin-top: 22px; width: 100%; }
.form-submit:disabled { opacity: 0.7; cursor: default; transform: none; }

/* Validation feedback (after first submit attempt) */
form.submitted input:invalid,
form.submitted textarea:invalid {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192, 57, 46, 0.15);
}
form.submitted fieldset.options:has(input:invalid) {
  border-color: #C0392B;
}

/* Option groups (radios / checkboxes) */
fieldset.options {
  border: 1px solid var(--ink-10);
  border-radius: 18px;
  background: #ffffff;
  padding: 18px 20px 14px;
  margin-top: 22px;
}
fieldset.options legend {
  font-weight: 800;
  font-size: 15.5px;
  padding: 0 8px;
}
.opt {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
  font-size: 15.5px;
  color: rgba(34, 30, 26, 0.8);
  cursor: pointer;
}
.opt input { margin-top: 4px; accent-color: var(--saffron-600); }

/* VSL page */
.video-shell {
  background: var(--midnight-900);
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
  max-width: 820px;
  margin: 30px auto 0;
}
.video-shell .inner { border-radius: 14px; overflow: hidden; }

/* Testimonials */
.quotes { display: grid; gap: 18px; margin-top: 26px; }
.quote {
  background: #ffffff;
  border: 1px solid var(--ink-10);
  border-radius: 20px;
  padding: 22px 24px;
  font-size: 16px;
  color: rgba(34, 30, 26, 0.75);
  text-align: left;
  box-shadow: var(--shadow-soft);
}
.quote::before {
  content: "\201C";
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  line-height: 0.6;
  color: var(--saffron-400);
  margin-bottom: 10px;
}

/* Sections on inner pages */
.section { padding: 8px 0 40px; text-align: center; }
.section h2 { font-size: clamp(24px, 3.6vw, 32px); margin-bottom: 6px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--ink-10);
  margin-top: 40px;
  padding: 30px 20px 40px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-40);
}
.site-footer .disclaimer {
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: 12px;
  line-height: 1.7;
}
.site-footer a { color: var(--saffron-700); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .links { margin-bottom: 10px; }
.site-footer .links a { margin: 0 8px; }

@media (max-width: 560px) {
  .card { padding: 26px 20px; }
  .btn.big { font-size: 17px; padding: 18px 34px; width: 100%; }
  .btn { width: 100%; }
  .site-header img { height: 60px; }
}
