:root {
  --dark: #101B1B;
  --navy: #33475B;
  --cream: #F5F4EF;
  --beige: #EAE7DA;
  --yellow: #FEF8E9;
  --accent: #99C9C7;
  --accent-dark: #7eb5b3;
  --white: #FFFFFF;
  --text: #1a1a1a;
  --text-light: #555;
  --text-muted: #777;
  --success: #4a7c59;
  --warning: #c9a227;
  --attention: #b85c38;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

::selection {
  background: rgba(153, 201, 199, 0.4);
}

/* Typography */
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

strong {
  font-weight: 600;
}

ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Quiz Container */
.quiz-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Wider container when showing results */
.quiz-container:has(.results-content),
.quiz-container.showing-results {
  max-width: 1000px;
  padding: 20px 40px;
}

@media (max-width: 768px) {
  .quiz-container:has(.results-content),
  .quiz-container.showing-results {
    padding: 20px 24px;
  }
}

@media (max-width: 640px) {
  .quiz-container {
    padding: 16px 20px;
  }
}

/* Progress Bar */
.progress-wrapper {
  display: none;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  padding: 0 4px;
}

.progress-wrapper.visible {
  display: flex;
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: var(--beige);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--navy);
  border-radius: 3px;
  transition: width 0.3s ease;
  width: 0%;
}

.progress-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-width: 45px;
  text-align: right;
}

/* Screens */
.screen {
  display: none;
  flex: 1;
  animation: fadeIn 0.4s ease;
}

.screen.active {
  display: flex;
  flex-direction: column;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.screen-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}

/* Start Screen */
#screen-start .screen-content {
  text-align: center;
  justify-content: center;
}

#screen-start h1 {
  margin-bottom: 0.5rem;
}

#screen-start .btn-primary {
  width: auto;
  min-width: 200px;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.instructions {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.time-estimate {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Disclaimer Screen */
#screen-disclaimer .screen-content {
  max-width: 580px;
  margin: 0 auto;
}

.highlight-box {
  background: var(--beige);
  padding: 1.25rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.highlight-box ul {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.emphasis {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
  margin-top: 1rem;
}

.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-1px);
}

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

.btn-skip {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-skip:hover {
  color: var(--text);
}

/* Question Screen */
#screen-questions .screen-content {
  justify-content: flex-start;
  padding-top: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

#screen-questions h2 {
  text-align: center;
  margin-bottom: 2rem;
  min-height: 3.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.options-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.option-btn {
  background: var(--white);
  border: 2px solid var(--beige);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.option-btn:hover {
  border-color: var(--accent);
  background: var(--white);
}

.option-btn:active,
.option-btn.selected {
  border-color: var(--navy);
  background: rgba(51, 71, 91, 0.05);
}

/* Two-column option layout for shorter options */
.options-grid.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .options-grid.two-col {
    grid-template-columns: 1fr;
  }
}

/* Measurements Screen */
#screen-measurements .screen-content {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.input-group {
  margin-bottom: 1.25rem;
}

.input-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border: 2px solid var(--beige);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s ease;
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.input-group input::placeholder {
  color: var(--text-muted);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Teaser Screen */
.teaser-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.teaser-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.teaser-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.tier-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 500;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  margin: 0.5rem 0 1rem;
}

.teaser-description {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 420px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.email-capture-box {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: left;
  margin-top: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.email-capture-box h3 {
  text-align: center;
  margin-bottom: 0.75rem;
  font-size: clamp(1.85rem, 5.5vw, 2.75rem);
}

.email-capture-box > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 600;
}

.convertkit-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.convertkit-form input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border: 2px solid var(--beige);
  border-radius: 6px;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s ease;
}

.convertkit-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}

.convertkit-form input::placeholder {
  color: var(--text-muted);
}

.convertkit-form .btn-primary {
  margin-top: 0.5rem;
  width: 100%;
}

/* Kit form overrides */
.convertkit-form .formkit-form {
  width: 100%;
}

.convertkit-form .formkit-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.convertkit-form .formkit-field {
  width: 100%;
}

.convertkit-form .formkit-input {
  width: 100%;
  padding: 0.875rem 1rem !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  border: 2px solid var(--beige) !important;
  border-radius: 6px !important;
  background: var(--cream) !important;
  color: var(--text) !important;
}

.convertkit-form .formkit-input:focus {
  outline: none;
  border-color: var(--accent) !important;
  background: var(--white) !important;
}

.convertkit-form .formkit-input::placeholder {
  color: var(--text-muted) !important;
}

.convertkit-form .formkit-submit {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.875rem 2rem !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease !important;
}

.convertkit-form .formkit-submit:hover {
  background: var(--dark) !important;
  transform: translateY(-1px);
}

.convertkit-form .formkit-powered-by-convertkit-container {
  margin-top: 0.75rem;
}

.trust-signals {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--beige);
}

.trust-signals p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0.25rem;
}

/* Results Screens */
.results-content {
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.results-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.result-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  text-align: center;
  margin-bottom: 0.75rem;
}

.results-content h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
}

.results-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.result-summary {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
}

.result-summary .highlight {
  background: var(--yellow);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin: 1.25rem 0 0;
  font-weight: 500;
  font-size: 1.05rem;
}

.result-summary .subhead {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.results-section {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
}

.result-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.result-icon.refine {
  background: var(--accent);
}

.result-icon-large {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.results-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.results-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.results-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.results-list.positive li::before {
  color: var(--success);
}

.results-list.neutral li::before {
  color: var(--accent-dark);
}

.results-list.attention li::before {
  color: var(--attention);
}

.section-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-style: italic;
}

.results-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .results-columns {
    grid-template-columns: 1fr;
  }
}

.results-columns .results-section {
  margin-bottom: 0;
}

.warning-note {
  background: rgba(184, 92, 56, 0.08);
  border-left: 4px solid var(--attention);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.time-horizon {
  background: var(--beige);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  text-align: center;
}

.time-horizon h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.time-horizon .subhead {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.time-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.next-steps {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
}

.next-steps h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.next-steps p {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.next-steps .btn-primary {
  margin-top: 1.5rem;
  display: inline-block;
  max-width: 100%;
}

/* Responsive */
@media (max-width: 640px) {
  .quiz-container {
    padding: 16px 20px;
  }

  .email-capture-box {
    padding: 1.5rem;
  }

  .results-content {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Loading state */
.btn-primary.loading {
  opacity: 0.7;
  pointer-events: none;
}

.btn-primary.loading::after {
  content: "...";
}

/* Error state for inputs */
.input-group.error input,
.input-group.error select {
  border-color: var(--attention);
}

.input-group .error-message {
  color: var(--attention);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* Start Screen - Side by Side Layout */
.start-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.start-image {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.start-text {
  display: flex;
  flex-direction: column;
}

.start-text h1 {
  margin-bottom: 0.5rem;
}

.start-text .subtitle {
  margin-bottom: 1.5rem;
}

.start-text .instructions {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.start-text .btn-primary {
  align-self: flex-start;
}

@media (max-width: 700px) {
  .start-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .start-image {
    order: -1;
  }

  .hero-image {
    max-width: 240px;
  }

  .start-text .instructions {
    text-align: center;
  }

  .start-text .btn-primary {
    align-self: center;
  }
}

/* Author Info - Email Capture */
.author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--beige);
}

.author-portrait {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

/* Quiz Footer */
.quiz-footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid var(--beige);
  margin-top: auto;
}

.quiz-footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.quiz-footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.quiz-footer a:hover {
  color: var(--navy);
}

/* ===== NEW RESULTS PAGE STYLES ===== */

/* Wider container for results pages */
.results-content {
  max-width: 940px !important;
  margin: 0 auto;
  padding: 0 20px 3rem;
}

/* Two column layout for results */
.results-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 3rem;
}

.results-columns .results-section {
  margin-bottom: 0;
  padding: 32px;
}

@media (max-width: 900px) {
  .results-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Section cards - more spacious */
.results-section {
  padding: 32px 36px;
  margin-bottom: 2rem;
}

.results-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* Priority items - wider and cleaner */
.priority-item {
  background: #FFF9F0;
  border-left: 4px solid #E8B86D;
  padding: 20px 24px;
  margin-bottom: 16px;
  border-radius: 0 8px 8px 0;
}
.priority-item.positive {
  background: #F0FFF4;
  border-left-color: #68D391;
}
.priority-item h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  margin: 0 0 8px 0;
  color: #33475B;
}
.priority-item p {
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* One thing box - prominent, navy background */
.one-thing-box {
  background: linear-gradient(135deg, #33475B 0%, #2a3a4a 100%);
  color: white;
  padding: 36px 40px;
  border-radius: 16px;
  margin: 40px 0;
}
.one-thing-box h3 {
  font-family: 'Fraunces', serif;
  margin: 0 0 16px 0;
  font-size: 1.5rem;
  color: white;
  text-align: center;
}
.one-thing-box p {
  margin: 0;
  line-height: 1.7;
  font-size: 1.15rem;
  color: white;
  text-align: center;
}

/* Strengths list */
.strengths-list, .priorities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strengths-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.5;
}
.strengths-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #68D391;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Footer note */
.footer-note {
  text-align: center;
  padding: 28px;
  color: #666;
  font-size: 0.95rem;
  border-top: 1px solid #eee;
  margin-top: 48px;
}
.footer-note p {
  margin: 4px 0;
}

/* Tier badges - centered, brand color */
.result-tier-badge {
  display: block;
  background: #99C9C7;
  color: #33475B;
  padding: 12px 32px;
  border-radius: 30px;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  margin: 0 auto 24px;
  width: fit-content;
  text-align: center;
}

/* Result summary - wider */
.result-summary {
  padding: 36px 40px;
}

.result-summary p {
  font-size: 1.2rem;
  line-height: 1.7;
}

/* Time horizon - breathing room */
.time-horizon {
  padding: 36px 48px;
}

.time-horizon h3 {
  font-size: 1.6rem;
}

.time-horizon p {
  font-size: 1.15rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Next steps CTA - prominent */
.next-steps {
  padding: 40px 48px;
}

.next-steps h3 {
  font-size: 1.6rem;
}

.next-steps p {
  font-size: 1.15rem;
  max-width: 640px;
}

.next-steps .btn-primary {
  padding: 18px 48px;
  font-size: 1.15rem;
  margin-top: 24px;
}

/* Main headline */
.results-content h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 2.5rem;
}

/* Blueprint Preview Box */
.blueprint-preview {
  background: linear-gradient(135deg, #F5F4EF 0%, #EAE7DA 100%);
  border: 2px solid #99C9C7;
  border-radius: 16px;
  padding: 36px 40px;
  margin: 32px 0 40px;
  text-align: center;
}
.blueprint-preview-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #99C9C7;
  margin-bottom: 8px;
  font-weight: 600;
}
.blueprint-preview h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: #33475B;
  margin-bottom: 20px;
}
.blueprint-preview-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 500px;
  text-align: left;
}
.blueprint-preview-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 1.05rem;
  color: #33475B;
}
.blueprint-preview-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #99C9C7;
  font-weight: bold;
}
.blueprint-preview .btn-primary {
  margin-top: 8px;
}
.blueprint-preview-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 16px;
  margin-bottom: 0;
}

.early-bird-note {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
}
.early-bird-note s {
  color: #999;
}
.early-bird-note strong {
  color: #33475B;
}

/* Improved Next Steps */
.next-steps-benefits {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.next-steps-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #555;
}
.next-steps-benefit::before {
  content: "✓";
  color: #68D391;
  font-weight: bold;
}

/* Sticky CTA Bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #33475B;
  color: white;
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta p {
  margin: 0;
  font-size: 1rem;
}
.sticky-cta p s {
  color: rgba(255,255,255,0.6);
}
.sticky-cta p strong {
  color: #99C9C7;
}
.sticky-cta .btn-accent {
  background: #99C9C7;
  color: #33475B;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
.sticky-cta .btn-accent:hover {
  background: #7eb5b3;
}
@media (max-width: 600px) {
  .sticky-cta {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Add padding to body for sticky bar */
body.has-sticky-cta {
  padding-bottom: 80px;
}
