/* Vanilla layout – no frameworks */
@font-face {
  font-family: "Arial Rounded";
  src: url("../fonts/ArialRoundedMTBold.woff2") format("woff2"),
       url("../fonts/ArialRoundedMTBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1a1a1a;
  background: #f0eef5;
}

.v-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.v-header {
  padding: 1rem 0;
  background: #fff;
  border-bottom: 1px solid #e5e0ed;
  box-shadow: 0 1px 3px rgba(109, 41, 239, 0.06);
}

.v-logo img {
  display: block;
  height: 40px;
  width: auto;
}

/* Main */
.v-main {
  padding: 2rem 0 3rem;
}

/* Hero */
.v-hero {
  text-align: center;
  padding: 2rem 0 3rem;
  background: linear-gradient(180deg, #6d29ef 0%, #5b21b6 100%);
  color: #fff;
}

.v-hero .v-hero-title,
.v-hero .v-hero-sub {
  color: #fff;
}

.v-hero .v-hero-sub {
  opacity: 0.95;
}

.v-hero .v-btn-primary {
  background: #fbbf24;
  color: #1a1a1a;
}

.v-hero .v-btn-primary:hover {
  background: #f59e0b;
  color: #1a1a1a;
}

.v-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.v-hero-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

.v-hero-title {
  font-family: "Arial Rounded", Arial, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.v-hero-sub {
  font-size: 1.125rem;
  margin: 0 0 1.5rem;
  color: #444;
}

/* Buttons */
.v-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.v-btn:hover {
  opacity: 0.9;
}

.v-btn-primary {
  background: #6d29ef;
  color: #fff;
}

/* Sections */
.v-section {
  padding: 2rem 0;
  background: #fff;
  border-top: 1px solid #e5e0ed;
}

.v-section:nth-child(even) {
  background: #f8f6fc;
}

.v-form-section {
  background: linear-gradient(180deg, #ede9f5 0%, #f8f6fc 100%);
}

.v-steps .v-step {
  background: #fff;
  box-shadow: 0 2px 8px rgba(109, 41, 239, 0.08);
  border: 1px solid #e5e0ed;
}

.v-testimonials {
  background: #f8f6fc;
}

.v-testimonial {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.v-brands {
  background: #fff;
}

.v-cta {
  background: linear-gradient(180deg, #5b21b6 0%, #6d29ef 100%);
  color: #fff;
  text-align: center;
  border: none;
}

.v-cta .v-section-title,
.v-cta .v-cta-title {
  color: #fff;
  margin-bottom: 1rem;
}

.v-cta .v-btn-primary {
  background: #fbbf24;
  color: #1a1a1a;
}

.v-cta .v-btn-primary:hover {
  background: #f59e0b;
  color: #1a1a1a;
}

.v-section-title {
  font-family: "Arial Rounded", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.v-form-section .v-form-secure {
  margin: 0.5rem 0 1rem;
  font-size: 0.875rem;
  color: #666;
}

/* Form (final step only) */
.v-form-card {
  max-width: 420px;
  margin: 0 auto 1rem;
  padding: 1.75rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(109, 41, 239, 0.12);
  border: 1px solid #e5e0ed;
}

.v-form-group {
  margin-bottom: 1.25rem;
}

.v-form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
  color: #333;
}

.v-form-group input[type="text"],
.v-form-group input[type="email"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #d1c4e0;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.2s;
}

.v-form-group input:focus {
  outline: none;
  border-color: #6d29ef;
  box-shadow: 0 0 0 3px rgba(109, 41, 239, 0.15);
}

.v-form-agree {
  margin: 1rem 0 1.25rem;
  font-size: 0.875rem;
  color: #555;
}

.v-form-agree a {
  color: #6d29ef;
  text-decoration: none;
}

.v-form-agree a:hover {
  text-decoration: underline;
}

.v-form-submit {
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  background: #6d29ef;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.v-form-submit:hover {
  background: #5b21b6;
}

/* Steps */
.v-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .v-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.v-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background: #f8f8f8;
  border-radius: 8px;
}

.v-step-icon {
  margin-bottom: 0.5rem;
}

.v-step-num {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.v-step-label {
  font-size: 0.9375rem;
  color: #444;
}

/* Testimonials */
.v-testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .v-testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.v-testimonial {
  margin: 0;
  padding: 1.25rem;
  background: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #6d29ef;
}

.v-testimonial-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.v-testimonial-content {
  font-size: 0.9375rem;
  margin: 0 0 0.75rem;
  color: #444;
}

.v-testimonial-name {
  font-size: 0.875rem;
  font-style: normal;
  color: #666;
}

/* Brands */
.v-brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.v-brand-logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

/* CTA section */
.v-cta {
  text-align: center;
}

.v-cta-title {
  font-size: 1.125rem;
  margin: 0 0 1rem;
}

.v-cta .text-yellow {
  color: #b8860b;
}

/* Footer */
.v-footer {
  padding: 2rem 0;
  background: #2d2a33;
  font-size: 0.875rem;
  color: #c4b8d4;
  border-top: none;
}

.v-footer-top {
  color: #a89cc0;
}

.v-footer a {
  color: #e9d5ff;
}

.v-footer a:hover {
  color: #fff;
}

.v-footer-top {
  margin: 0 0 1rem;
}

.v-footer-bottom {
  margin: 0;
}

.v-footer a {
  color: #6d29ef;
  text-decoration: none;
}

.v-footer a:hover {
  text-decoration: underline;
}

/* Success page */
.v-success {
  background: linear-gradient(180deg, #ede9f5 0%, #f8f6fc 50%);
}

.v-success .v-section {
  background: transparent;
  border: none;
}

.v-success .v-container {
  max-width: 560px;
}

.v-success-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(109, 41, 239, 0.1);
  border: 1px solid #e5e0ed;
  margin-bottom: 1.5rem;
}

.v-success .v-section-title {
  margin-top: 1rem;
}

.v-success-headline {
  font-family: "Arial Rounded", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.v-success-progress {
  font-size: 0.9375rem;
  color: #666;
  margin: 0 0 1.5rem;
}

.v-success-step1 {
  font-size: 1.125rem;
  margin: 0 0 1rem;
}

.v-success-img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 8px;
}

.v-email-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}

.v-email-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.v-email-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #6d29ef;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.v-email-links a:hover {
  opacity: 0.9;
}

/* Wizard: 7-step survey */
.v-wizard {
  max-width: 520px;
  margin: 0 auto 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(109, 41, 239, 0.12);
  border: 1px solid #e5e0ed;
  overflow: hidden;
}

.v-wizard-header {
  padding: 1rem 1.25rem;
  background: #fbbf24;
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
}

.v-progress-wrap {
  padding: 0 1.25rem 1rem;
  background: #fff;
}

.v-step-label {
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.v-progress-bar {
  height: 8px;
  background: #e5e0ed;
  border-radius: 4px;
  overflow: hidden;
}

.v-progress-fill {
  height: 100%;
  background: #22c55e;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.v-step-panel {
  display: none;
  padding: 1.5rem 1.25rem 1.75rem;
}

.v-step-panel.v-step-active {
  display: block;
}

.v-step-question {
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 1rem;
  color: #1a1a1a;
}

.v-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.v-option-btn {
  display: block;
  padding: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  background: #f8f6fc;
  border: 2px solid #e5e0ed;
  border-radius: 8px;
  cursor: pointer;
  color: #333;
  transition: border-color 0.2s, background 0.2s;
}

.v-option-btn:hover {
  border-color: #6d29ef;
  background: #ede9f5;
}

.v-option-btn input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.v-option-btn.selected,
.v-option-btn:has(input:checked) {
  border-color: #6d29ef;
  background: #ede9f5;
  color: #1a1a1a;
}

.v-option-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.v-option-list .v-option-btn {
  text-align: left;
}

.v-wizard .v-form-group {
  margin-bottom: 1rem;
}

.v-wizard .v-form-agree {
  margin: 0.75rem 0 1rem;
}

.v-wizard-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.v-wizard-actions .v-btn,
.v-wizard-actions .v-form-submit {
  flex: 1;
  min-width: 140px;
}

.v-panel-cards {
  margin: 1rem 0;
}

.v-panel-card {
  padding: 1rem;
  background: #f8f6fc;
  border: 1px solid #e5e0ed;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.v-panel-card h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.v-final-substeps {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.v-final-substeps li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.v-final-substeps .v-substep-num {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  background: #6d29ef;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.v-success .v-progress-wrap {
  padding: 0 0 1rem;
}

.v-success .v-progress-bar {
  margin-top: 0.5rem;
}

/* Form validation */
.v-step-error {
  margin: 0.75rem 0 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  display: none;
}

.v-step-error.is-visible {
  display: block;
}

.v-form-group.is-invalid input {
  border-color: #b91c1c;
  box-shadow: 0 0 0 1px #fecaca;
}

/* Success modal */
.v-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.v-modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.v-modal-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 100%;
  padding: 2rem;
  text-align: center;
}

.v-modal-box h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  color: #1a1a1a;
}

.v-modal-box p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: #444;
}

.v-modal-actions .v-btn {
  margin: 0 0.25rem;
}
