/* CSS Variables */
:root {
  --primary-purple: #5e2bff;
  --primary-purple-dark: #4a23cc;
  --primary-purple-light: #7c52ff;
  --secondary-purple: #c86bfa;
  --secondary-purple-light: #d48dfb;
  --background-tan: #fff5eb;
  --text-dark: #1a1a1a;
  --text-gray: #4b5563;
  --text-light: #9ca3af;
  --max-width: 1200px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(
    145deg,
    var(--primary-purple),
    var(--primary-purple-light)
  );
  --gradient-primary-inverted: linear-gradient(
    235deg,
    var(--primary-purple),
    var(--primary-purple-light)
  );
  --gradient-secondary: linear-gradient(
    145deg,
    var(--secondary-purple),
    var(--secondary-purple-light)
  );
}

/* Base Styles */
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  color: var(--text-dark);
}

.page-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.875rem;
  font-weight: 600;
}

h4 {
  font-size: 1.375rem;
  font-weight: 600;
}

/* Sticky Navigation Styles */
.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(124, 58, 237, 0.03);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
  transition: all 0.3s ease;
}

.nav-container.scrolled {
  background-color: rgba(124, 58, 237, 0.15);
  box-shadow: 0 1px 3px rgba(124, 58, 237, 0.1);
}

.nav-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 500;
}

.logo-text-primary {
  color: var(--primary-purple);
  font-weight: 500;
}

.logo-text-secondary {
  color: var(--text-dark);
  font-weight: 500;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 450;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary-purple);
}

/* CTA Button */
.nav-cta.primary-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta.primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

/* Add padding to body to account for fixed header */
body {
  padding-top: 4rem; /* Adjust based on your nav height */
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-content {
    padding: 1rem;
  }

  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 9rem;
  }

  .nav-content {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    align-items: center;
  }

  .nav-cta.primary-cta {
    width: 100%;
  }
}
/* Button Styles */
.view-providers-btn,
.submit-btn,
.primary-cta,
.report-btn {
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 450;
  letter-spacing: -0.01em;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
}

.view-providers-btn:hover,
.submit-btn:hover,
.primary-cta:hover,
.report-btn:hover {
  background: var(--primary-purple-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Search Form */
.search-container {
  flex: 1;
  position: relative;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  z-index: 1;
}

.search-container .field {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.search-container label {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.search-container select {
  width: 100%;
  padding: 1rem 1rem 1rem 2.75rem; /* same as input */
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  outline: none;
  box-sizing: border-box;
  appearance: none;
  background-color: white;
  background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  transition: all 0.3s ease;
}

.search-container select:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 2px rgba(94, 43, 255, 0.1);
}

/* Main Content */
.main-content {
  text-align: center;
  padding: 4rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.main-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.main-content p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin: 0 0 3rem;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.metric-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #f3f4f6;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  text-decoration: none;
  font-weight: 450;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

.metric-button:hover {
  background-color: #e5e7eb;
}

.metric-button.highlighted {
  background-color: var(--primary-purple);
  color: white;
}

.metric-button svg {
  color: currentColor;
}

a.white-button {
  background: white;
  color: var(--primary-purple);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5rem;
  }
}

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

  .search-control-group {
    flex-direction: column;
  }

  .submit-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .main-content h2 {
    font-size: 1.875rem;
  }

  .main-content p {
    font-size: 1.125rem;
  }
  form {
    padding: 0px;
  }
}

/* Main Content */
.main-content {
  text-align: center;
  padding: 4rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.main-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.main-content p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin: 0.5rem 0 1rem;
}
/* Problem Statement Section Styles */
.problem-statement {
  position: relative;
  background-color: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}

.wave-transition {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-transition svg {
  position: relative;
  display: block;
  width: 100%;
  height: 00px;
}
.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 450;
  letter-spacing: -0.01em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-accent {
  height: 4px;
  background: #8a4fff;
  width: 100%;
}

.stat-content {
  padding: 1.5rem;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8a4fff;
  margin-bottom: 1rem;
  line-height: 1;
}

.stat-unit {
  font-size: 1rem;
  color: #6b7280;
  margin-left: 0.5rem;
  font-weight: normal;
}

.stat-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.stat-description {
  color: #4b5563;
  line-height: 1.6;
}

.transition-statement {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 2rem;
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-gray);
  background: var(--background-light);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

.decor-box {
  background: var(--gradient-primary);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.inner-decor-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5%;
  text-align: left;
}

.inner-decor-box h3 {
	color: #ffffff;
}

.main-content .decor-box h2, .main-content .decor-box p {
  color: #fff;
}

.inner-decor-box p {
	font-weight: bold;
	margin-bottom: 15px;
}

.decor-box small {
  color: #ccc;
  font-weight: normal;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .stats-grid {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title {
    font-size: 1.875rem;
  }
}

@media (max-width: 640px) {
  .problem-statement {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .stat-content {
    padding: 1.25rem;
  }

  .stat-number {
    font-size: 1.875rem;
  }
}
/* Search Form */
.search-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.search-control-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 600px;
}

.search-container {
  flex: 1;
  position: relative;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.search-container input {
  width: 100%;
  padding: 1rem 1rem 1rem 2.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  font-size: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  outline: none;
  box-sizing: border-box;
}

.search-container input:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 2px rgba(94, 43, 255, 0.1);
}

.search-container select {
  width: 100%;
  padding: 1rem 1rem 1rem 2.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  font-size: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  outline: none;
  box-sizing: border-box;
}

.search-container select:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 2px rgba(94, 43, 255, 0.1);
}

.submit-btn {
  background-color: var(--secondary-purple);
  color: white;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
  min-width: fit-content;
}

.alt-option {
  background: none;
  border: none;
  color: var(--primary-purple);
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .search-control-group {
    flex-direction: column;
  }

  .submit-btn {
    width: 100%;
  }
}

/* How it Works Section */
.how-it-works-wrapper {
  background-color: var(--background-tan);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.how-it-works {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 20px;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.step-description {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Why Start Here Section Styles */
.why-start-here {
  background-color: #faf7ff;
  padding: 4rem 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.why-start-here .section-container {
  max-width: 1200px; /* Matching your existing max-width */
  margin: 0 auto;
  padding: 0 20px;
}

.why-start-here .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a; /* Using your existing color */
  margin-bottom: 1rem;
}

.why-start-here .section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #4b5563; /* Using your existing color */
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5e2bff; /* Using your primary purple */
  border-radius: 50%;
  color: white;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.benefit-description {
  color: #4b5563;
  line-height: 1.6;
}

form {
    width: 100%;
    max-width: 640px;
    padding: 0px;
    margin: 0 auto;
}
.field {
    margin-bottom: 15px;
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
}
.field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}
.field select {
  appearance: none; /* Removes default browser styling */
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  color: #666;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 30px; /* Makes it rounded */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  outline: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
}
.field input {
  appearance: none; /* Removes default browser styling */
  width: 90%;
  padding: 12px 15px;
  font-size: 16px;
  color: #665;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 30px; /* Makes it rounded */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  outline: none;
  cursor: pointer;
}
.field input:focus, .field button:focus {
  border-color: #0066cc;
  outline: none;
}
.field button {
  background-color: var(--gradient-primary);
  color: white;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
  min-width: fit-content;
  font-size: 16px;
}
.field button:hover {
  background-color: var(--primary-purple-dark);
}
.field select, .field input, .field button {
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .benefits-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-start-here {
    padding: 3rem 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
  
  .field {
    padding: 0 2rem;
  }
}
/* Transparency Section */
.transparency-section {
  padding: 4rem 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.metric-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #f8f9fc;
  border: 1px solid #f1f5f9;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.9375rem;
}

.metric-button:hover {
  background-color: #f1f5f9;
  border-color: #e2e8f0;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.metric-button svg {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.metric-button:hover svg {
  transform: translateX(2px);
  color: var(--primary-purple);
}

.metric-button.highlighted {
  background-color: var(--primary-purple);
  color: white;
  border-color: var(--primary-purple);
}

.metric-button.highlighted svg {
  color: white;
}

.metric-button.highlighted:hover {
  background-color: var(--primary-purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

/* Add better spacing for section titles */
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .problem-statement {
    padding-top: 6rem;
  }

  .wave-transition {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .problem-statement {
    padding-top: 4rem;
  }

  .wave-transition {
    height: 150px;
  }
}
/* Report Preview Section */
.report-preview {
  margin: 4rem auto;
  max-width: var(--max-width);
  padding: 0 20px;
}

.report-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.preview-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.preview-header {
  background: var(--primary-purple);
  color: white;
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.preview-items {
  padding: 0.5rem;
}

.preview-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.preview-item:last-child {
  border-bottom: none;
}

.preview-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.report-content {
  padding-top: 0;
}

.report-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text-dark);
}

.report-content p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.report-btn {
  background-color: var(--secondary-purple);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.report-btn:hover {
  background-color: var(--primary-purple);
}

.small-btn {
  background-color: var(--secondary-purple);
  color: white;
  padding: 0.25rem .5rem;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  font-size: 0.84em;
  margin-top:12px;
  margin-bottom: 8px;
}

.small-btn:hover {
  background-color: var(--primary-purple);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .search-group {
    flex-direction: column;
  }

  .steps {
    flex-direction: column;
    gap: 2rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .report-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .main-content h2 {
    font-size: 1.875rem;
  }

  .main-content p {
    font-size: 1.125rem;
  }
}
/* SeeSurance Final CTA Section Styles */
.final-cta-section {
  background: linear-gradient(145deg, #fdfcfe, #5e2bff, #c86bfa);
  padding: 5rem 0;
  margin-top: 4rem;
}

.final-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.final-cta-content {
  color: white;
}

.final-cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.final-cta-description {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.final-cta-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.feature-list li {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  color: #4b5563;
}

.feature-list li svg {
  color: #5e2bff;
  margin-right: 1rem;
  flex-shrink: 0;
}

.final-cta-button {
  width: 100%;
  background: linear-gradient(145deg, #ffffff, #c86bfa);
  color: white;
  border: none;
  border-radius: 9999px;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.final-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(94, 43, 255, 0.2);
}

.final-cta-button svg {
  transition: transform 0.3s ease;
}

.final-cta-button:hover svg {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .final-cta-content {
    text-align: center;
  }

  .final-cta-title {
    font-size: 1.875rem;
  }

  .final-cta-section {
    padding: 4rem 0;
  }
}

@media (max-width: 640px) {
  .final-cta-container {
    padding: 0 1.5rem;
  }

  .final-cta-title {
    font-size: 1.5rem;
  }

  .final-cta-description {
    font-size: 1rem;
  }

  .feature-list li {
    padding: 0.5rem 0;
  }
}

.footer-container {
  clear:both;
  width: 100%;
  background-color: rgba(124, 58, 237, 0.03);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(124, 58, 237, 0.08);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.policy-links {
  float:left;
  clear:both;
  width: 100%;
  text-align: center;
  font-size: .9em;
  margin-top: 15px;
  margin-bottom: 35px;
}
.policy-links a {
  text-decoration: none;
  margin:10px;
}

/* --- Hamburger button --- */
.nav-toggle{
  display:none;            /* hidden on desktop */
  width:42px; height:42px;
  border:none; background:transparent; cursor:pointer;
  border-radius:10px;
}
.nav-toggle:focus-visible{ outline:2px solid var(--primary-purple); outline-offset:2px; }
.nav-toggle .bar{
  display:block; width:22px; height:2px; margin:5px auto;
  background: var(--text-dark);
  transition: transform .25s ease, opacity .2s ease;
}

/* transform to an X when open */
.nav-toggle.is-open .bar:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .bar:nth-child(2){ opacity:0; }
.nav-toggle.is-open .bar:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile menu panel --- */
@media (max-width: 768px){
  /* show hamburger on mobile */
  .nav-toggle{ display:block; }

  /* turn links into a dropdown panel; hide by default */
  .nav-container .nav-links{
    display:none;                  /* override your column stack */
    position:absolute;
    top: 64px;                     /* just under sticky header */
    right: 1rem;
    background:#fff;
    border: 1px solid rgba(124,58,237,0.12);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 14px;
    width: min(260px, calc(100vw - 2rem));
    z-index: 1100;
    flex-direction: column;
    gap: 12px;
  }
  .nav-container .nav-links.show{ display:flex; }

  /* make CTA full width in the dropdown */
  .nav-container .nav-links .nav-cta.primary-cta{ width:100%; }

  /* keep the sticky header height consistent */
  body{ padding-top: 4rem; }
}

/* =========================
   NAV: Desktop/Mobile Fixes
   ========================= */

/* 1) Base: hide hamburger on desktop, keep desktop links visible */
.nav-container .hamburger{ display:none !important; }
@media (min-width: 769px){
  .nav-container .nav-links{ display:flex !important; } /* ensure row on desktop */
}

/* 2) Make dropdown anchor to the header row, not the page */
.nav-container .nav-content{ position:relative; }

/* 3) Mobile behavior: show hamburger; convert links into dropdown */
@media (max-width: 768px){
  /* Show button on mobile only */
  .nav-container .hamburger{ 
    display:block !important;
    width:42px; height:42px;
    border:none; background:transparent; cursor:pointer;
    border-radius:10px; font-size:26px; line-height:42px; 
    color: var(--text-dark);
  }
  .nav-container .hamburger.is-open{ color: var(--primary-purple); }
  .nav-container .hamburger:focus-visible{
    outline:2px solid var(--primary-purple); outline-offset:2px;
  }

  /* Turn off any previous "stack the links in the header" rules */
  .nav-container .nav-content{ flex-direction:row !important; gap:0 !important; }
  .nav-container .nav-links{
    /* hidden until .show */
    display:none !important;

    /* dropdown panel anchored to the right edge of the header row */
    position:absolute; 
    top: calc(100% + 8px);   /* directly below sticky header */
    right: 1rem;
    background:#fff;
    border: 1px solid rgba(124,58,237,0.12);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 14px;
    width: min(260px, calc(100vw - 2rem));
    z-index: 1100;

    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .nav-container .nav-links.show{ display:flex !important; }

  /* Make CTA full-width inside the dropdown */
  .nav-container .nav-links .nav-cta.primary-cta{ width:100%; }

  /* Keep body padding for sticky header consistent (your header is ~64px) */
  body{ padding-top: 4rem !important; }
}

/* Optional: lock scroll when menu open (prevents page sliding under the menu) */
html.menu-open{ overflow:hidden; }

