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

html {
  scroll-behavior: smooth;
}

body.cw-body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.01em;
  color: #1a1a2e;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.cw-nav {
  border-bottom: 1px solid rgba(218, 220, 224, 0.6);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 24px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.cw-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.cw-nav-links {
  display: flex;
  align-items: center;
}

.cw-nav-link {
  color: #5f6368;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  margin-right: 16px;
  transition: color 0.15s;
  position: relative;
  padding-left: 14px;
}
.cw-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a73e8;
  opacity: 0;
  transition: opacity 0.15s;
}
.cw-nav-link:hover {
  color: #1a1a2e;
}
.cw-nav-link:hover::before {
  opacity: 1;
}

.cw-nav-cta-form {
  display: inline;
  margin-left: 4px;
}

.cw-nav-cta {
  padding: 4px 12px;
  font-size: 12px;
}

.cw-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #1a1a2e;
  cursor: pointer;
  padding: 8px;
}
.cw-mobile-menu-btn:hover {
  color: #1a73e8;
}

@media (max-width: 768px) {
  .cw-mobile-menu-btn {
    display: block;
  }
  .cw-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #dadce0;
    padding: 16px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 100;
  }
  .cw-nav-links.open {
    display: flex;
  }
  .cw-nav-link {
    margin-right: 0;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 18px;
  }
  .cw-nav-link:last-of-type {
    border-bottom: none;
  }
  .cw-nav-cta {
    margin-top: 12px;
    text-align: center;
    font-size: 15px;
    padding: 12px;
  }
}
.cw-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.cw-logo-img {
  height: 32px;
  width: auto;
}

.cw-main {
  flex: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px;
}

.cw-footer {
  border-top: 1px solid #dadce0;
  padding: 32px 24px;
  text-align: center;
  color: #5f6368;
  font-size: 14px;
}

.cw-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.cw-footer-links a, .cw-footer-links a:visited, .cw-footer-links a:link {
  color: #5f6368 !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}
.cw-footer-links a:hover {
  color: #1a73e8 !important;
}

.cw-footer-dot {
  color: #dadce0;
  font-size: 12px;
}

.cw-legal-section {
  margin-bottom: 32px;
}
.cw-legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a2e;
}
.cw-legal-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 16px 0 8px;
  color: #1a1a2e;
}
.cw-legal-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}
.cw-legal-section ul {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  padding-left: 24px;
  margin-bottom: 12px;
}
.cw-legal-section ul li {
  margin-bottom: 6px;
}

.cw-hero {
  text-align: center;
  padding: 24px 0 40px;
  max-width: 680px;
  margin: 0 auto;
}

.cw-hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cw-hero p {
  font-size: 20px;
  color: #5f6368;
  line-height: 1.6;
  margin-bottom: 32px;
}

.cw-hero-illustration {
  margin-bottom: 32px;
}

.cw-hero-img {
  max-width: 480px;
  width: 100%;
  height: auto;
}

.cw-hero-eyebrow {
  font-size: 22px !important;
  font-weight: 600;
  color: #43a047 !important;
  margin-bottom: 12px !important;
}

.cw-hero-sub {
  font-size: 17px !important;
  color: #5f6368 !important;
  margin-top: 16px;
}

.cw-btn-icon {
  margin-right: 8px;
}

.cw-stat-banner {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 32px 40px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.cw-stat-rotator {
  flex-shrink: 0;
  text-align: center;
  min-width: 150px;
  position: relative;
  height: 80px;
}

.stat-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.stat-slide.stat-slide-active {
  opacity: 1;
}

.cw-stat-amount {
  font-size: 40px;
  font-weight: 800;
  color: #2e7d32;
  margin-bottom: 2px;
  line-height: 1;
}

.cw-stat-label {
  font-size: 15px;
  font-weight: 600;
  color: #5f6368;
  margin-bottom: 0;
}

.cw-stat-claim {
  font-size: 14px;
  color: #9e9e9e;
  margin-bottom: 0;
}

.cw-stat-body {
  border-left: 2px solid #e8f5e9;
  padding-left: 32px;
}

.cw-stat-text {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 8px;
}

.cw-stat-source {
  font-size: 12px;
  color: #666;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .cw-stat-banner {
    flex-direction: column;
    padding: 24px;
    text-align: center;
  }
  .cw-stat-body {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid #e8f5e9;
    padding-top: 20px;
  }
}
.cw-section-headline {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 60px;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.cw-highlight {
  background: #e8f5e9;
  padding: 2px 6px;
  border-radius: 4px;
}

.cw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cw-btn-primary {
  background: linear-gradient(to bottom, #1e7de8, #1668c7);
  color: #fff;
}
.cw-btn-primary:hover {
  background: linear-gradient(to bottom, #1668c7, #1255a8);
}

.cw-btn-secondary {
  background: #f8f9fa;
  color: #1a1a2e;
  border: 1px solid #dadce0;
}
.cw-btn-secondary:hover {
  background: rgb(239.075, 241.35, 243.625);
}

.cw-btn-lg {
  padding: 16px 40px;
  font-size: 18px;
}

.cw-wizard {
  max-width: 640px;
  margin: 0 auto;
}

.cw-step-header {
  text-align: center;
  margin-bottom: 32px;
}

.cw-step-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cw-step-header p {
  color: #5f6368;
  font-size: 16px;
}

.cw-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cw-progress-step {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #dadce0;
}
.cw-progress-step.active {
  background: #1a73e8;
}
.cw-progress-step.complete {
  background: #0f9d58;
}

.cw-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.cw-card-option {
  border: 2px solid #dadce0;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #ffffff;
}
.cw-card-option:hover {
  border-color: #1a73e8;
  background: rgba(26, 115, 232, 0.08);
}
.cw-card-option.selected {
  border-color: #1a73e8;
  background: rgba(26, 115, 232, 0.08);
}
.cw-card-option input[type=radio], .cw-card-option input[type=checkbox] {
  display: none;
}

.cw-card-option-icon {
  font-size: 28px;
  color: #1a73e8;
  margin-bottom: 8px;
}

.cw-card-option-label {
  font-size: 14px;
  font-weight: 600;
}

.cw-input, .cw-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dadce0;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.cw-input:focus, .cw-textarea:focus {
  border-color: #1a73e8;
}

.cw-textarea {
  min-height: 120px;
  resize: vertical;
}

.cw-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.cw-magic-link-section {
  margin-bottom: 24px;
}

.cw-magic-link-label {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
  text-align: center;
}

.cw-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  color: #5f6368;
  font-size: 13px;
  font-weight: 500;
}
.cw-divider::before, .cw-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #dadce0;
}
.cw-divider span {
  padding: 0 16px;
}

.cw-password-section {
  margin-bottom: 16px;
}

.cw-form-group {
  margin-bottom: 16px;
}

.cw-form-link-right {
  text-align: right;
  margin-bottom: 24px;
}
.cw-form-link-right a {
  font-size: 14px;
  color: #1a73e8;
  text-decoration: none;
}
.cw-form-link-right a:hover {
  text-decoration: underline;
}

.cw-form-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 15px;
  color: #5f6368;
}

.cw-link {
  color: #1a73e8;
  font-weight: 600;
  text-decoration: none;
}
.cw-link:hover {
  text-decoration: underline;
}

.cw-btn-full {
  width: 100%;
}

.cw-flash-notice {
  color: #2e7d32;
  font-size: 14px;
  text-align: center;
  margin-bottom: 16px;
  padding: 12px;
  background: #e8f5e9;
  border-radius: 8px;
}

.cw-flash-alert {
  color: #d32f2f;
  font-size: 14px;
  text-align: center;
  margin-bottom: 16px;
  padding: 12px;
  background: #fce4ec;
  border-radius: 8px;
}

.cw-dropzone {
  border: 2px dashed #dadce0;
  border-radius: 12px;
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.cw-dropzone:hover, .cw-dropzone.dragover {
  border-color: #1a73e8;
  background: rgba(26, 115, 232, 0.08);
}

.cw-dropzone-icon {
  font-size: 40px;
  color: #1a73e8;
  margin-bottom: 12px;
}

.cw-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.cw-photo-thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.cw-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cw-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.cw-photo-uploading {
  opacity: 0.7;
}

.cw-photo-failed .cw-photo-overlay {
  background: rgba(217, 48, 37, 0.5);
}

.cw-photos-existing {
  margin-top: 12px;
  font-size: 14px;
  color: #5f6368;
}

.cw-upload-progress {
  margin-top: 16px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #dadce0;
}

.cw-upload-progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cw-upload-count {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

.cw-upload-percent {
  font-size: 14px;
  font-weight: 700;
  color: #1a73e8;
}

.cw-progress-bar-track {
  width: 100%;
  height: 8px;
  background: #dadce0;
  border-radius: 4px;
  overflow: hidden;
}

.cw-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: #1a73e8;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.cw-mobile-camera {
  display: none;
  margin-top: 12px;
  text-align: center;
}

.cw-mobile-camera-btn {
  width: 100%;
}

@media (max-width: 640px) {
  .cw-mobile-camera {
    display: block;
  }
}
.cw-dropzone-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.cw-dropzone-hint {
  font-size: 14px;
  color: #5f6368;
}

.cw-analyzing {
  text-align: center;
  padding: 80px 0;
}

.cw-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #dadce0;
  border-top-color: #1a73e8;
  border-radius: 50%;
  animation: cw-spin 0.8s linear infinite;
  margin: 0 auto 24px;
}

@keyframes cw-spin {
  to {
    transform: rotate(360deg);
  }
}
.cw-report {
  max-width: 800px;
  margin: 0 auto;
}

.cw-report-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dadce0;
}

.cw-report-section {
  margin-bottom: 48px;
  padding: 0 0 40px;
  background: none;
  border-radius: 0;
  border: none;
  border-bottom: 4px solid #e5e5e5;
}
.cw-report-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cw-report-section h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cw-report-section p, .cw-report-section ul {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.cw-recommendation {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
}
.cw-recommendation:last-child {
  border-bottom: none;
}

.cw-recommendation-finding {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.cw-recommendation-action {
  color: #333;
  font-size: 16px;
}

.cw-recommendation-value {
  color: #0f9d58;
  font-weight: 700;
  font-size: 16px;
  margin-top: 4px;
}

.cw-locked-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  margin-bottom: 16px;
}

.cw-tier-card {
  background: #fff;
  border: 2px solid #dadce0;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  min-width: 220px;
  max-width: 260px;
  cursor: pointer;
  transition: all 0.2s;
}
.cw-tier-card:hover {
  border-color: #1a73e8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cw-tier-featured {
  border-color: #1a73e8;
  position: relative;
}

.cw-tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a73e8;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.cw-tier-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1a1a2e;
}

.cw-tier-price {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.cw-tier-features {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cw-tier-features li {
  font-size: 14px;
  color: #5f6368;
  padding: 4px 0;
}
.cw-tier-features li::before {
  content: "✓ ";
  color: #0f9d58;
  font-weight: 700;
}

.cw-step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.cw-founder-note {
  max-width: 720px;
  margin: 60px auto 0;
  padding: 40px 48px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #dadce0;
}

.cw-founder-photo {
  text-align: center;
  margin-bottom: 20px;
}

.cw-founder-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.cw-founder-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
}

.cw-founder-body p {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}
.cw-founder-body p:last-child {
  margin-bottom: 0;
}

.cw-founder-name {
  font-size: 18px !important;
  font-weight: 800 !important;
  margin-top: 20px !important;
  margin-bottom: 2px !important;
  color: #1a1a2e !important;
}

.cw-founder-role {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #5f6368 !important;
  margin-bottom: 0 !important;
}

.cw-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.cw-feature-card {
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.06);
}
.cw-feature-card .cw-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  margin-bottom: 14px;
}
.cw-feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a2e;
}
.cw-feature-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

.cw-icon-blue {
  background: #e3f2fd;
  color: #1565c0;
}

.cw-icon-red {
  background: #fce4ec;
  color: #c62828;
}

.cw-icon-green {
  background: #e8f5e9;
  color: #2e7d32;
}

.cw-icon-purple {
  background: #f3e5f5;
  color: #7b1fa2;
}

.cw-icon-orange {
  background: #fff3e0;
  color: #e65100;
}

.cw-icon-teal {
  background: #e0f7fa;
  color: #00838f;
}

.cw-icon-indigo {
  background: #ede7f6;
  color: #4527a0;
}

.cw-icon-deeporange {
  background: #fbe9e7;
  color: #bf360c;
}

.cw-icon-navy {
  background: #e8eaf6;
  color: #283593;
}

.cw-icon-amber {
  background: #fff8e1;
  color: #f9a825;
}

.cw-icon-emerald {
  background: #e0f2f1;
  color: #00695c;
}

.cw-icon-pink {
  background: #fce4ec;
  color: #ad1457;
}

.cw-icon-sky {
  background: #e3f2fd;
  color: #0277bd;
}

.cw-icon-lime {
  background: #f1f8e9;
  color: #558b2f;
}

.cw-icon-brown {
  background: #efebe9;
  color: #4e342e;
}

@media (max-width: 860px) {
  .cw-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .cw-feature-grid {
    grid-template-columns: 1fr;
  }
  .cw-hero h1 {
    font-size: 28px;
  }
  .cw-hero p {
    font-size: 16px;
  }
  .cw-main {
    padding: 24px 16px;
  }
  .cw-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cw-step-header h2 {
    font-size: 22px;
  }
}
.cw-hiw-steps {
  max-width: 640px;
  margin: 0 auto 60px;
}

.cw-hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cw-hiw-step:last-child {
  border-bottom: none;
}

.cw-hiw-step-icon {
  flex-shrink: 0;
}

.cw-hiw-step-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a73e8;
  margin-bottom: 4px;
}

.cw-hiw-step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.cw-hiw-step-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

.cw-hiw-section {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.cw-hiw-section-header {
  margin-bottom: 16px;
}
.cw-hiw-section-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  margin-top: 16px;
  margin-bottom: 0;
}

.cw-hiw-section-text {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 32px;
}

.cw-hiw-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.cw-hiw-feature {
  padding: 28px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.06);
}
.cw-hiw-feature h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.cw-hiw-feature p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

.cw-hiw-cta {
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid #eee;
  max-width: 640px;
  margin: 0 auto;
}
.cw-hiw-cta h2 {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.cw-hiw-cta p {
  font-size: 18px;
  color: #5f6368;
  margin-bottom: 24px;
}

.cw-hiw-cta-sub {
  font-size: 15px !important;
  color: #5f6368;
  margin-top: 16px;
}

@media (max-width: 860px) {
  .cw-hiw-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .cw-hiw-features {
    grid-template-columns: 1fr;
  }
  .cw-hiw-step {
    gap: 16px;
  }
  .cw-hiw-step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
.cw-faq-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}

.cw-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cw-faq-item {
  border-bottom: 1px solid #eee;
}
.cw-faq-item:first-child {
  border-top: 1px solid #eee;
}

.cw-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 19px;
  font-weight: 600;
  color: #1a1a2e;
  text-align: left;
}
.cw-faq-question:hover {
  color: #1a73e8;
}

.cw-faq-arrow {
  font-size: 14px;
  color: #5f6368;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.cw-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.cw-faq-answer p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 0;
  padding-bottom: 24px;
}

.cw-faq-item.open .cw-faq-arrow {
  transform: rotate(180deg);
}
.cw-faq-item.open .cw-faq-answer {
  max-height: 500px;
}

.cw-admin {
  max-width: 1200px;
  margin: 0 auto;
}
.cw-admin h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a2e;
}

.cw-admin-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.cw-admin-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.06);
}

.cw-admin-card-value {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.cw-admin-card-label {
  font-size: 13px;
  color: #5f6368;
  font-weight: 500;
}

.cw-admin-section {
  margin-bottom: 40px;
}

.cw-admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.cw-admin-table th {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 2px solid #eee;
  font-weight: 600;
  color: #5f6368;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cw-admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #f0f0f0;
  color: #1a1a2e;
}
.cw-admin-table tr:hover td {
  background: #fafafa;
}

.cw-admin-funnel {
  max-width: 600px;
}

.cw-admin-funnel-step {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.cw-admin-funnel-bar {
  background: #1a73e8;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  min-width: 60px;
  text-align: right;
  margin-right: 12px;
}

.cw-admin-funnel-label {
  font-size: 14px;
  color: #5f6368;
}

.cw-dashboard-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
}

.cw-dashboard-card-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cw-dashboard-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 115, 232, 0.08);
  color: #1a73e8;
  font-size: 16px;
  flex-shrink: 0;
}

.cw-badge-paid {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: #e8f5e9;
  color: #2e7d32;
  margin-left: 8px;
}

.cw-badge-free {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: #f5f5f5;
  color: #5f6368;
  margin-left: 8px;
}

.cw-report-layout {
  display: flex;
  gap: 0;
  max-width: 1400px;
  margin: -40px auto 0;
  min-height: 100vh;
}

.cw-report-sidebar {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  overflow-y: auto;
  padding: 16px 24px;
  border-left: 1px solid #eee;
  display: flex;
  flex-direction: column;
  order: 2;
}

.cw-report-main {
  order: 1;
  max-width: 1100px;
}

.cw-report-map {
  margin-bottom: 32px;
}

.cw-sidebar-section {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.cw-sidebar-section:last-child {
  border-bottom: none;
}

.cw-sidebar-map {
  border-radius: 8px;
  overflow: hidden;
}

.cw-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cw-sidebar-nav-link {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: background 0.15s;
}
.cw-sidebar-nav-link:hover {
  background: #f5f5f5;
}

.cw-report-main {
  flex: 1;
  min-width: 0;
  padding: 40px 48px;
}

@media (max-width: 860px) {
  .cw-report-layout {
    flex-direction: column;
  }
  .cw-report-sidebar {
    width: 100%;
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 24px 16px;
  }
  .cw-sidebar-nav {
    display: none;
  }
  .cw-report-main {
    padding: 24px 16px;
  }
}
.cw-room-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.cw-room-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.cw-room-card-color {
  width: 5px;
  flex-shrink: 0;
}

.cw-room-card-content {
  padding: 14px 16px;
}

.cw-room-card-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.cw-room-card-total {
  font-size: 16px;
  font-weight: 800;
  color: #2e7d32;
  margin-bottom: 2px;
}

.cw-room-card-items {
  font-size: 12px;
  color: #5f6368;
  margin-bottom: 0;
}

.cw-cost-bars {
  margin-bottom: 16px;
}

.cw-cost-bar-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.cw-cost-bar-label {
  width: 140px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  flex-shrink: 0;
}

.cw-cost-bar-track {
  flex: 1;
  height: 24px;
  background: transparent;
  border-radius: 6px;
  overflow: hidden;
  margin: 0 12px;
}

.cw-cost-bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1s ease;
}

.cw-cost-bar-value {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  width: 130px;
  text-align: right;
  line-height: 1.4;
  flex-shrink: 0;
}

.cw-grade-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
}
.cw-grade-table th {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 2px solid #e0e0e0;
  font-weight: 600;
  color: #5f6368;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.cw-grade-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  vertical-align: middle;
  line-height: 1.5;
}
.cw-grade-table tr:hover td {
  background: #fafafa;
}

.cw-grade-standard {
  color: #888;
  font-style: italic;
}

.cw-grade-actual {
  font-weight: 600;
  color: #1a1a2e;
}

.cw-grade-diff {
  font-weight: 700;
  color: #2e7d32;
  white-space: nowrap;
}

.cw-feature-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
}
.cw-feature-table th {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 2px solid #e0e0e0;
  font-weight: 600;
  color: #5f6368;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.cw-feature-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  vertical-align: top;
  line-height: 1.6;
}
.cw-feature-table tr:hover td {
  background: #fafafa;
}

.cw-report-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.cw-report-list li {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.cw-report-list li:last-child {
  border-bottom: none;
}
.cw-report-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a73e8;
}

.cw-section-intro {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.cw-tip-wrap {
  position: relative;
  display: inline-block;
}

.cw-tip-content {
  display: none;
  position: absolute;
  right: 0;
  top: 28px;
  width: 360px;
  padding: 18px 20px;
  background: #1a1a2e;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
  border-radius: 8px;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.cw-tip-content::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: #1a1a2e;
  transform: rotate(45deg);
}

.cw-tip-wrap:hover .cw-tip-content {
  display: block;
}

@media print {
  .cw-report-sidebar {
    display: none !important;
  }
  .cw-report-layout {
    display: block !important;
  }
  .cw-report-main {
    padding: 0 !important;
  }
  .cw-report-map {
    display: none !important;
  }
  .cw-nav, .cw-footer {
    display: none !important;
  }
  .cw-tip-wrap .cw-tip-content {
    display: none !important;
  }
  .cw-bar-container {
    width: attr(data-width) !important;
    transition: none !important;
  }
  .cw-cost-bar-track {
    background: #f0f0f0 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .cw-bar-base, .cw-bar-found {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  #item-filters, #sidebar-filters {
    display: none !important;
  }
  .cw-download-bar {
    display: none !important;
  }
  .cw-download-btn {
    display: none !important;
  }
}
.cw-glossary dt {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 24px;
}
.cw-glossary dt:first-child {
  margin-top: 0;
}
.cw-glossary dd {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin: 6px 0 0 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.cw-download-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.cw-download-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid #dadce0;
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.cw-download-btn:hover:not(:disabled) {
  background: #f5f5f5;
  border-color: #999;
}
.cw-download-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.cw-download-btn-sm {
  padding: 5px 12px;
  font-size: 12px;
}

.cw-field-error {
  font-size: 14px;
  color: #c62828;
  padding: 10px 16px;
  background: #fce4ec;
  border-radius: 6px;
  margin-top: 8px;
}

.cw-paywall {
  text-align: center;
  padding: 48px 32px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  border: 2px solid #d0daf5;
  border-radius: 12px;
}

.cw-paywall-header {
  max-width: 520px;
  margin: 0 auto 32px;
}

.cw-paywall-tiers {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cw-blur-row {
  user-select: none;
  pointer-events: none;
}
.cw-blur-row td {
  filter: blur(4px);
}

.cw-locked-row-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: rgba(26, 115, 232, 0.08);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a73e8;
  margin-top: 12px;
}

.cw-locked-sections {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cw-locked-section-item {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
}
.cw-locked-section-item:last-child {
  border-bottom: none;
}

.cw-locked-badge {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  background: #e8f5e9;
  color: #2e7d32;
  white-space: nowrap;
}

.cw-upgrade-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  border: 1px solid #d0daf5;
  border-radius: 12px;
}

@media (max-width: 640px) {
  .cw-upgrade-banner {
    flex-direction: column;
    text-align: center;
  }
}
.cw-share-form {
  margin-bottom: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.cw-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cw-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid #dadce0;
  border-radius: 20px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.cw-filter-btn:hover {
  background: #f5f5f5;
  border-color: #999;
}
.cw-filter-btn.active {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}
