/* Orb */
.orb-graph-section .graph-content {
  position: relative;
}

.orb-graph-section .graph-container {
  position: relative;
  background: white;
  border-radius: var(--radius-medium);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.orb-graph-section .demo-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: white;
  color: black;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.orb-graph-section .graph-display {
  width: 100%;
  height: 600px;
  border-radius: var(--radius-medium);
}

.orb-graph-section .node-info-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 20;
  max-width: 320px;
  min-width: 280px;
  border: 1px solid var(--border-color);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.orb-graph-section .overlay-content {
  padding: 16px;
  position: relative;
}

.orb-graph-section .close-button {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-gray);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
  z-index: 1;
}

.orb-graph-section .close-button:hover {
  background: #f3f4f6;
  color: #374151;
}

.orb-graph-section .node-details h3 {
  margin: 0 0 12px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  padding-right: 30px;
}

.orb-graph-section .node-details .detail-item {
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.orb-graph-section .node-details .detail-label {
  font-weight: 600;
  color: #374151;
  margin-right: 8px;
}

.orb-graph-section .node-details .detail-value {
  color: var(--text-gray);
}

.orb-graph-section .node-details .node-type {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.orb-graph-section .node-details .node-type.person {
  background: #dbeafe;
  color: #1e40af;
}

.orb-graph-section .node-details .node-type.company {
  background: #dcfce7;
  color: #166534;
}

.orb-graph-section .node-details .node-type.notification {
  background: #fef3c7;
  color: #92400e;
}

.orb-graph-section .node-details .node-type.govern {
  background: #f3e8ff;
  color: #7c3aed;
}

@media (max-width: 768px) {
  .orb-graph-section {
    padding: 0;
  }

  .orb-graph-section .graph-display {
    height: 400px;
  }

  .orb-graph-section .node-info-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: calc(100vw - 32px);
    min-width: auto;
    width: calc(100vw - 32px);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
}

/* Curl examples */
.curl-example-section {
  background: #ffffff;
}

.curl-example-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 900px) {
  .curl-example-content-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2rem;
  }
}

.curl-example-box-content {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
  max-width: 50%;
}

@media (max-width: 900px) {
  .curl-example-box-content {
    width: 100%;
    max-width: 100%;
  }
}

.curl-example-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 901px) {
  .curl-example-text-content {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .curl-example-text-content {
    width: 100%;
    text-align: center;
  }
}

.curl-example-text-container {
  max-width: 480px;
  padding-left: 5rem;
}

@media (max-width: 900px) {
  .curl-example-text-container {
    padding-left: 0;
    margin: 0 auto;
  }
}

.curl-example-terminal {
  width: 36rem;
  max-width: 36rem;
  min-width: 36rem;
  height: 400px; /* Fixed height */
  min-height: 400px; /* Ensure minimum height */
  background: #1a1a1a;
  border-radius: 1rem;
  border: 1px solid #333;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3),
    0 4px 6px -2px rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
  position: relative;
  overflow: hidden; /* Prevent container from growing */
  box-sizing: border-box; /* Include padding in height calculation */
}

.curl-example-terminal-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #333;
  height: 2rem; /* Fixed header height */
  flex-shrink: 0; /* Don't shrink header */
}

.curl-example-terminal-dots {
  display: flex;
  gap: 0.5rem;
}

.curl-example-terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.curl-example-terminal-dot.red {
  background: #ff5f56;
}

.curl-example-terminal-dot.yellow {
  background: #ffbd2e;
}

.curl-example-terminal-dot.green {
  background: #27ca3f;
}

.curl-example-terminal-title {
  margin-left: 1rem;
  color: #888;
  font-size: 0.875rem;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
}

.curl-example-terminal-content {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #00ff00;
  height: calc(100% - 4rem); /* Fixed height minus header and margins */
  overflow-y: auto; /* Allow scrolling if content is too long */
  overflow-x: hidden; /* Prevent horizontal scrolling */
  box-sizing: border-box;
  padding-right: 0.5rem; /* Space for scrollbar */
  white-space: pre-wrap; /* Preserve whitespace but allow wrapping */
  word-wrap: break-word; /* Force long words to wrap */
  overflow-wrap: break-word; /* Modern property for word wrapping */
}

.curl-example-prompt {
  color: #00ff00;
}

.curl-example-command {
  color: #ffffff;
}

.curl-example-flag {
  color: #ffbd2e;
}

.curl-example-string {
  color: #ff6b6b;
}

.curl-example-response {
  color: #4ecdc4;
  margin-top: 0.5rem;
}

.curl-example-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: #00ff00;
  animation: curl-blink 1s infinite;
  animation-fill-mode: both;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

@keyframes curl-blink {
  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .curl-example-terminal {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 350px; /* Fixed height for mobile */
    min-height: 350px;
  }

  .curl-example-terminal-content {
    font-size: 0.65rem;
    height: calc(100% - 4rem);
  }
}

.curl-example-chevron-icon {
  width: 1rem;
  height: 1rem;
}

/* Curl examples section two */
.curl-example-section-two {
  background: #ffffff;
}

.curl-example-content-wrapper-two {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 900px) {
  .curl-example-content-wrapper-two {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.curl-example-box-content-two {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
  max-width: 50%;
}

@media (max-width: 900px) {
  .curl-example-box-content-two {
    width: 100%;
    max-width: 100%;
  }
}

.curl-example-text-content-two {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 901px) {
  .curl-example-text-content-two {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .curl-example-text-content-two {
    width: 100%;
    text-align: center;
  }
}

.curl-example-text-container-two {
  max-width: 480px;
  padding-right: 5rem;
}

@media (max-width: 900px) {
  .curl-example-text-container-two {
    padding-right: 0;
    margin: 0 auto;
  }
}

.curl-example-terminal-two {
  width: 36rem;
  max-width: 36rem;
  min-width: 36rem;
  height: 400px; /* Fixed height */
  min-height: 400px; /* Ensure minimum height */
  background: #1a1a1a;
  border-radius: 1rem;
  border: 1px solid #333;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3),
    0 4px 6px -2px rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
  position: relative;
  overflow: hidden; /* Prevent container from growing */
  box-sizing: border-box; /* Include padding in height calculation */
}

.curl-example-terminal-header-two {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #333;
  height: 2rem; /* Fixed header height */
  flex-shrink: 0; /* Don't shrink header */
}

.curl-example-terminal-dots-two {
  display: flex;
  gap: 0.5rem;
}

.curl-example-terminal-dot-two {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.curl-example-terminal-dot-two.red {
  background: #ff5f56;
}

.curl-example-terminal-dot-two.yellow {
  background: #ffbd2e;
}

.curl-example-terminal-dot-two.green {
  background: #27ca3f;
}

.curl-example-terminal-title-two {
  margin-left: 1rem;
  color: #888;
  font-size: 0.875rem;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
}

.curl-example-terminal-content-two {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #00ff00;
  height: calc(100% - 4rem); /* Fixed height minus header and margins */
  overflow-y: auto; /* Allow scrolling if content is too long */
  overflow-x: hidden; /* Prevent horizontal scrolling */
  box-sizing: border-box;
  padding-right: 0.5rem; /* Space for scrollbar */
  white-space: pre-wrap; /* Preserve whitespace but allow wrapping */
  word-wrap: break-word; /* Force long words to wrap */
  overflow-wrap: break-word; /* Modern property for word wrapping */
}

.curl-example-prompt-two {
  color: #00ff00;
}

.curl-example-command-two {
  color: #ffffff;
}

.curl-example-flag-two {
  color: #ffbd2e;
}

.curl-example-string-two {
  color: #ff6b6b;
}

.curl-example-response-two {
  color: #4ecdc4;
  margin-top: 0.5rem;
}

.curl-example-cursor-two {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: #00ff00;
  animation: curl-blink-two 1s infinite;
  animation-fill-mode: both;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

@keyframes curl-blink-two {
  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .curl-example-terminal-two {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 350px; /* Fixed height for mobile */
    min-height: 350px;
  }

  .curl-example-terminal-content-two {
    font-size: 0.65rem;
    height: calc(100% - 4rem);
  }
}

.curl-example-chevron-icon-two {
  width: 1rem;
  height: 1rem;
}

/* Custom scrollbar for terminal content */
.curl-example-terminal-content::-webkit-scrollbar,
.curl-example-terminal-content-two::-webkit-scrollbar {
  width: 6px;
}

.curl-example-terminal-content::-webkit-scrollbar-track,
.curl-example-terminal-content-two::-webkit-scrollbar-track {
  background: #2a2a2a;
  border-radius: 3px;
}

.curl-example-terminal-content::-webkit-scrollbar-thumb,
.curl-example-terminal-content-two::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 3px;
}

.curl-example-terminal-content::-webkit-scrollbar-thumb:hover,
.curl-example-terminal-content-two::-webkit-scrollbar-thumb:hover {
  background: #777;
}

/* Our areas */
.our-areas-container {
  display: flex;
  gap: 24px;
  width: 100%;
}

.area-box {
  flex: 1;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 24px;
}

.area-box .list-icon-container {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.area-box .list-icon-container svg {
  width: 48px;
  height: 48px;
}

.area-box svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.area-box h3 {
  margin-bottom: 16px;
}

.area-box p {
  margin: 0;
  line-height: 1.5;
  color: var(--text-gray);
  font-weight: 100;
}

@media (max-width: 970px) {
  .our-areas-container {
    flex-direction: column;
  }
}

/* Search as you type */
.search-asyoutype-container {
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 15px;
  border-radius: 12px;
  background-color: white;
  position: relative;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.search-asyoutype-container input[type="text"] {
  width: 85%;
  padding: 15px 10px 15px 40px;
  border: none;
  border-radius: 3px;
  font-size: 1.2em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 16px 16px;
}

.search-asyoutype-container input[type="text"]:focus {
  outline: none;
  box-shadow: none;
}

.search-badge {
  margin-left: 10px;
  background-color: #edf1f3;
  color: var(--text-gray);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.9em;
  white-space: nowrap;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.pulsating-dot {
  width: 8px;
  height: 8px;
  background-color: #4caf50;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1.5s infinite ease-in-out;
  vertical-align: middle;
  flex-shrink: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.25);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.search-asyoutype-container .results {
  max-height: 300px;
  overflow-y: auto;
  padding: 0;
  background-color: white;
  text-align: left !important;
}

.search-wrapper-container {
  background-color: #edf1f3;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.search-wrapper-container p {
  margin-bottom: 20px;
  color: var(--text-gray);
  font-size: 1rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .search-wrapper-container {
    text-align: center;
  }

  .search-wrapper-container p {
    max-width: 600px;
    font-size: 1.1rem;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .search-input-wrapper {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-top: 30px;
  }

  .search-badge {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-bottom: 0;
    z-index: 1;
  }

  .search-asyoutype-container input[type="text"] {
    width: 100%;
    box-sizing: border-box;
  }
}

.placeholder-result {
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 8px;
  height: 100px;
}

.badge-text {
  transform: translateY(1px);
}

/* Search as you type */
.company-result {
  background: white;
  border: none;
  border-left: 3px solid #e5e7eb;
  margin-bottom: 1px;
  padding: 16px 20px;
  transition: all 0.15s ease;
  cursor: pointer;
  text-align: left !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.company-result * {
  text-align: left !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.company-result:hover {
  border-left-color: var(--primary-color);
  background-color: #f9fafb;
}

.company-result:last-child {
  margin-bottom: 0;
}

.company-name {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--primary-color) !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.2 !important;
  padding: 0 !important;
}

.company-description {
  font-size: 0.75rem !important;
  color: var(--text-gray) !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.3 !important;
  padding: 0 !important;
}

.company-metrics {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
  text-align: left !important;
  width: 100% !important;
  flex-wrap: wrap !important;
}

.metric-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  text-align: left !important;
  flex: 1 !important;
  min-width: 100px !important;
}

.metric-label {
  font-size: 0.7rem;
  color: #9ca3af;
  font-weight: 500;
}

.metric-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

.metric-value.positive {
  color: #059669;
}

.metric-value.negative {
  color: #dc2626;
}

@media (max-width: 768px) {
  .company-result {
    padding: 12px 16px;
  }

  .company-name {
    font-size: 0.95rem;
    margin-bottom: 3px;
  }

  .company-description {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }

  .company-metrics {
    gap: 12px !important;
    flex-direction: row !important;
  }

  .metric-item {
    min-width: 80px !important;
  }

  .metric-label {
    font-size: 0.65rem;
  }

  .metric-value {
    font-size: 0.8rem;
  }
}

/* Subscription Section */
.subscription-container {
  display: flex;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 970px) {
  .subscription-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.subscription-box {
  flex: 1;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.subscription-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.subscription-box h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.subscription-box .price-note {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-weight: 300;
}

.subscription-box > p {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.subscription-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.subscription-box ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.subscription-box .list-icon-container {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.subscription-box .list-icon-container img {
  width: 16px;
  height: 16px;
}

.subscription-box .plus-item {
  font-weight: 500;
  color: var(--primary-color);
  border-top: 1px solid var(--border-color);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.subscription-box .plus-item .list-icon-container img {
  filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(1000%)
    hue-rotate(200deg);
}

.subscription-box button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
}

@media (max-width: 768px) {
  .subscription-box {
    padding: 1.5rem;
  }

  .subscription-box h2 {
    font-size: 1.5rem;
  }

  .subscription-box ul li {
    font-size: 0.9rem;
  }
}

/* Pricing Comparison  */
.pricing-comparison-container {
  padding: 40px 0;
  overflow-x: auto;
  position: relative;
}

@media (max-width: 970px) {
  .pricing-comparison-container {
    overflow: visible !important;
    padding: 0;
    margin: 0;
  }
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  border: none;
}

.pricing-table th,
.pricing-table td {
  padding: 0;
  vertical-align: middle;
}

.pricing-table td:first-child {
  font-weight: 600;
  color: #1a1a1a;
  padding: 20px;
  border-bottom: 1px solid #f3f4f6;
}

.pricing-table tbody tr:first-child td {
  border-top: 1px solid #e2e8f0;
}

.pricing-table .spacer {
  width: 20px;
  border-bottom: 1px solid #f3f4f6;
}

.plan-header {
  padding: 0;
}

.plan-header-content {
  background: rgba(246, 246, 247, 0.4);
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  border-radius: 12px 12px 0 0;
  padding: 32px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  width: 200px;
}

.plan-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.plan-subtitle {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.plan-cell {
  background: rgba(246, 246, 247, 0.4);
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  padding: 20px;
  text-align: center;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  width: 200px;
}

.last-row .plan-cell {
  border-bottom: none;
}

.plan-footer {
  background: rgba(246, 246, 247, 0.4);
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0 0 12px 12px;
  height: 32px;
  width: 200px;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease;
}

.info-icon:hover {
  color: #374151;
}

.info-icon img {
  opacity: 0.7;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
}

.check-icon img {
  color: #10b981;
  filter: brightness(0) saturate(100%) invert(54%) sepia(92%) saturate(1015%)
    hue-rotate(128deg) brightness(96%) contrast(86%);
}

.dash-icon {
  color: #9ca3af;
  font-size: 1.2rem;
  font-weight: 600;
}

.pricing-table tbody tr:hover td:first-child {
  background: #e0f2fe;
  color: #0f172a;
  font-weight: 600;
}

.pricing-table tbody tr:hover .plan-cell {
  background: #e0f2fe;
  color: #0f172a;
}

.pricing-table tbody tr:hover .spacer {
  background: #e0f2fe;
}

.pricing-table tfoot .spacer {
  border-bottom: none;
}

.pricing-table tfoot td:first-child {
  border-bottom: none;
}

/* Pricing comparison mobile */
.mobile-plan-explorer {
  display: none;
  overflow: visible !important;
  max-width: 100%;
}

@media (max-width: 970px) {
  .pricing-comparison-container {
    margin: 0;
    padding: 0;
    overflow: visible !important;
  }

  .pricing-table {
    display: none;
  }

  .mobile-plan-explorer {
    display: block;
    overflow: visible !important;
    width: 100%;
    max-width: 100%;
  }

  /* Plan Tabs */
  .plan-tabs {
    display: flex;
    background: #f8fafc;
    border-radius: 16px;
    padding: 6px;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: visible !important;
    width: 100%;
    max-width: 100%;
  }

  .plan-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    border: none;
    background: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
  }

  .plan-tab.active {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
  }

  .plan-tab .tab-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 2px;
  }

  .plan-tab .tab-price {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
  }

  .plan-tab.active .tab-name {
    color: #0f172a;
  }

  .plan-tab.active .tab-price {
    color: #3b82f6;
  }

  /* Plan Info Display */
  .mobile-plan-info {
    margin-bottom: 2rem;
  }

  .plan-display {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    color: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #1e293b;
  }

  .plan-price {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }

  .plan-cta {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 300;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }

  .plan-cta.btn-primary {
    background-color: black;
    color: white;
  }

  .plan-cta.btn-primary:hover {
    background-color: rgb(60, 60, 60);
  }

  .plan-cta.btn-outline {
    background-color: white;
    color: black;
    border: 1px solid var(--border-color);
  }

  .plan-cta.btn-outline:hover {
    background-color: rgb(245, 245, 245);
  }

  .feature-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: visible !important;
    width: 100%;
    max-width: 100%;
  }

  .feature-category {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    overflow: visible !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .feature-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  }

  .category-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
  }

  .category-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
  }

  .feature-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    width: 100%;
  }

  .feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f8fafc;
    transition: all 0.2s ease;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
  }

  .feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .feature-item:hover {
    background: #f8fafc;
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 12px;
  }

  .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
    word-wrap: break-word;
    word-break: break-word;
  }

  .feature-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
  }

  .feature-desc {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 4px;
    line-height: 1.3;
  }

  .feature-status {
    font-weight: 600;
    font-size: 1rem;
    margin-left: 1rem;
    min-width: 24px;
    text-align: center;
  }

  .feature-status.included {
    color: #10b981;
  }

  .feature-status.not-included {
    color: #94a3b8;
    font-size: 1.2rem;
  }

  .feature-status.paid {
    background: #3b82f6;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: auto;
  }

  .mobile-plan-footer {
    margin-top: 2rem;
    text-align: center;
  }

  .more-features p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }

  .more-features .btn-outline {
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  .feature-category {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
  }

  .feature-category:nth-child(1) {
    animation-delay: 0.1s;
  }
  .feature-category:nth-child(2) {
    animation-delay: 0.2s;
  }
  .feature-category:nth-child(3) {
    animation-delay: 0.3s;
  }
  .feature-category:nth-child(4) {
    animation-delay: 0.4s;
  }

  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .plan-display {
    transition: all 0.4s ease;
  }

  .feature-item {
    transition: all 0.3s ease;
  }

  .feature-status {
    transition: all 0.3s ease;
  }
}

@media (max-width: 768px) {
  .pricing-comparison-container {
    margin: 0;
    padding: 0;
  }

  .plan-tabs {
    margin-bottom: 1.5rem;
  }

  .plan-tab {
    padding: 10px 6px;
  }

  .plan-tab .tab-name {
    font-size: 0.9rem;
  }

  .plan-tab .tab-price {
    font-size: 0.75rem;
  }

  .plan-display {
    padding: 1.5rem 1rem;
  }

  .plan-name {
    font-size: 1.5rem;
  }

  .feature-category {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .category-header h4 {
    font-size: 1rem;
  }

  .feature-name {
    font-size: 0.9rem;
  }

  .feature-desc {
    font-size: 0.75rem;
  }
}

/* Kontroll av leverantörsbetalningar */

.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.warning-card {
  border-left: 4px solid var(--primary-color);
}

.unique-link {
  margin-top: 1rem;
}

.unique-link label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

.link-container {
  display: flex;
  gap: 0.5rem;
}

.link-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.9rem;
  background-color: #f9f9f9;
}

.copy-btn {
  white-space: nowrap;
}

.upload-section {
  margin: 2rem 0;
}

.upload-container {
  background: white;
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-medium);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.upload-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-medium);
  z-index: 10;
}

.upload-loading.active {
  display: flex;
}

.loading-content {
  text-align: center;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.loading-text {
  color: var(--primary-color);
  font-weight: 500;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.results-section {
  margin-top: 2rem;
}

.results-header {
  margin-bottom: 1rem;
}

.results-header h3 {
  color: var(--primary-color);
  margin: 0;
}

.table-container {
  background: white;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  background-color: #f8f9fa;
  color: var(--primary-color);
  font-weight: 500;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border-color);
}

.data-table th:last-child {
  width: 150px;
  min-width: 150px;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.data-table tbody tr:hover {
  background-color: #f8f9fa;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.action-buttons {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

.btn-primary.danger {
  background-color: #cf2020;
}

.btn-primary.danger:hover {
  background-color: #b01c1c;
}

.page-header.details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: left;
}

.breadcrumb-nav {
  margin-bottom: 0.5rem;
}

.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--primary-color);
}

.breadcrumb-arrow {
  font-size: 1.2em;
}

.header-left h1 {
  margin: 0 0 0.5rem 0;
  font-weight: 400;
}

.header-left p {
  margin: 0;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
}

.grid-section {
  margin-top: 20px;
  height: calc(100vh - 250px);
  min-height: 600px;
}

.grid-container {
  height: 100%;
  width: 100%;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

#myGrid {
  width: 100%;
  height: 100%;
}

/* AG Grid Styling */

#myGrid .ag-row-level-1 {
  background-color: #fefefe;
}

#myGrid .ag-group-expanded .ag-icon {
  color: var(--primary-color);
}

#myGrid .ag-body-horizontal-scroll-viewport::-webkit-scrollbar,
#myGrid .ag-body-vertical-scroll-viewport::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

#myGrid .ag-body-horizontal-scroll-viewport::-webkit-scrollbar-track,
#myGrid .ag-body-vertical-scroll-viewport::-webkit-scrollbar-track {
  background: #f1f5f9;
}

#myGrid .ag-body-horizontal-scroll-viewport::-webkit-scrollbar-thumb,
#myGrid .ag-body-vertical-scroll-viewport::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

#myGrid .ag-body-horizontal-scroll-viewport::-webkit-scrollbar-thumb:hover,
#myGrid .ag-body-vertical-scroll-viewport::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.badge {
  padding: 5px 5px 5px 5px;
  border-radius: 5px;
}

.negative {
  background-color: #cf2020;
  color: #ffffff;
}

.warning {
  background-color: #ffbb10;
  color: #000000;
}

.positive {
  background-color: #42b74a;
  color: #000000;
}

.details-page-container {
  margin-left: 0px !important;
  margin-right: 0px !important;
  margin-bottom: 0px !important;
  width: 100vw !important;
  max-width: 100% !important;
  padding: 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .info-section {
    grid-template-columns: 1fr;
  }

  .link-container {
    flex-direction: column;
  }

  .action-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-header.details-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .header-left {
    width: 100%;
  }

  .back-button {
    width: 100%;
    justify-content: center;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* Signup page */
.signup-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px 20px;
  background: transparent;
}

.signup-form-step,
.signup-form-group {
  background-color: transparent !important;
}

.signup-form {
  background: #ffffff !important;
}

.signup-header {
  margin-bottom: 60px;
  text-align: center;
}

.signup-header h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 768px) {
  .signup-header h1 {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
  }
}

@media (min-width: 1024px) {
  .signup-header h1 {
    font-size: 4.5rem;
  }
}

.signup-header p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: center;
}

.signup-header p:last-child {
  margin-bottom: 0;
}

.signup-stats {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.875rem;
  color: #999;
}

.signup-product-selection {
  padding: 0;
  margin: 0;
}

.signup-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.signup-benefit-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.signup-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.signup-benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.signup-benefit-card:hover .signup-benefit-icon {
  color: var(--primary-color);
  transform: scale(1.1);
}

.signup-benefit-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.signup-benefit-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.4;
}

.signup-choice-section {
  margin-bottom: 60px;
}

.signup-choice-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-weight: 300;
}

.signup-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.signup-choice-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.signup-choice-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.signup-choice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.signup-choice-header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 500;
}

.signup-choice-badge {
  background: #e3f2fd;
  color: #1976d2;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.signup-choice-badge-premium {
  background: #f3e5f5;
  color: #7b1fa2;
}

.signup-choice-card p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.signup-choice-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.signup-choice-features li {
  padding: 8px 0;
  color: var(--text-gray);
  position: relative;
  padding-left: 20px;
}

.signup-choice-features li:before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.signup-choice-btn {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
}

.signup-sales-contact {
  background: white;
  border-radius: var(--radius-medium);
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.signup-sales-header {
  text-align: center;
  margin-bottom: 40px;
}

.signup-sales-header h2 {
  margin: 0 0 16px 0;
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 300;
}

.signup-sales-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin: 0;
}

.signup-sales-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.signup-sales-option {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  background: #fafafa;
}

.signup-sales-option h3 {
  margin: 0 0 16px 0;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.signup-sales-option p {
  color: var(--text-gray);
  margin: 0 0 16px 0;
}

.signup-sales-phone {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.signup-sales-hours {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.signup-back-to-choice {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.signup-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0 20px;
  background: transparent !important;
}

.signup-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  background: transparent !important;
}

.signup-progress-step.active {
  opacity: 1;
  background: transparent !important;
}

.signup-progress-step.completed {
  opacity: 1;
  background: transparent !important;
}

.signup-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  color: var(--text-gray);
}

.signup-progress-step.active .signup-step-number {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.signup-progress-step.completed .signup-step-number {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.signup-step-label {
  font-size: 0.9rem;
  text-align: center;
}

.signup-progress-line {
  width: 60px;
  height: 2px;
  background-color: var(--border-color);
  margin: 0 20px;
}

.signup-form {
  background: #ffffff !important;
  padding: 40px;
  border-radius: var(--radius-medium);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  margin-top: 20px;
}

.signup-form-step {
  display: none;
  background: transparent !important;
}

.signup-form-step.active {
  display: block;
  background: transparent !important;
}

.signup-form-group {
  margin-bottom: 24px;
  background: transparent !important;
  position: relative;
}

.signup-form-group label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1rem;
}

.signup-field-help {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 8px 0 0 0;
  line-height: 1.4;
}

.signup-company-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.signup-company-suggestion {
  padding: 16px 20px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s ease;
  position: relative;
}

.signup-company-suggestion:hover {
  background-color: #f8fafc;
  border-left: 3px solid var(--primary-color);
  padding-left: 17px;
}

.signup-company-suggestion:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}

.signup-company-suggestion:first-child {
  border-top: 1px solid #f3f4f6;
}

.suggestion-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 4px;
  display: block;
  line-height: 1.3;
}

.suggestion-details {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.suggestion-details span {
  display: inline-flex;
  align-items: center;
}

.suggestion-details span:not(:last-child):after {
  content: "•";
  margin-left: 8px;
  color: #cbd5e1;
}

.signup-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.signup-radio-option {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.signup-radio-option:hover {
  background-color: #f9f9f9;
  border-color: var(--primary-color);
}

.signup-radio-option input[type="radio"] {
  margin-right: 12px;
  margin-top: 2px;
}

.signup-radio-label {
  font-weight: 500;
  color: var(--primary-color);
}

.signup-radio-description {
  display: block;
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-top: 4px;
}

.signup-contact-sales-note {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  border-left: 4px solid var(--primary-color);
}

.signup-contact-sales-note p {
  margin: 0 0 8px 0;
}

.signup-contact-sales-note p:last-child {
  margin-bottom: 0;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  background: #ffffff !important;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.signup-form input[type="text"]:focus,
.signup-form input[type="email"]:focus,
.signup-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 16, 32, 0.1);
}

.signup-form-actions {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: 32px;
  background: transparent !important;
}

.signup-form-actions button {
  min-width: 120px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 500;
}

.signup-field-error {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 4px;
  display: none;
}

.signup-field-error.show {
  display: block;
}

.signup-success {
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: var(--radius-medium);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.signup-success-icon {
  width: 80px;
  height: 80px;
  background-color: #4caf50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.signup-success h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.signup-success p {
  color: var(--text-gray);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .signup-container {
    padding: 40px 10px 20px 10px;
  }

  .signup-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .signup-benefit-card {
    padding: 20px;
  }

  .signup-choice-section h2 {
    font-size: 1.6rem;
  }

  .signup-choices {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .signup-choice-card {
    padding: 24px;
  }

  .signup-sales-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .signup-sales-option {
    padding: 24px 16px;
  }

  .signup-form {
    padding: 24px;
  }

  .signup-progress-line {
    width: 40px;
    margin: 0 12px;
  }

  .signup-step-label {
    font-size: 0.8rem;
  }

  .signup-form-actions {
    flex-direction: column;
  }

  .signup-form-actions button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .signup-benefits {
    gap: 16px;
  }

  .signup-benefit-card {
    padding: 18px;
  }

  .signup-benefit-card h4 {
    font-size: 1rem;
  }

  .signup-benefit-card p {
    font-size: 0.85rem;
  }

  .signup-choice-card {
    padding: 20px;
  }

  .signup-choice-header h3 {
    font-size: 1.2rem;
  }
}

.signup-products-showcase {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.signup-product-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.signup-product-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: var(--primary-color);
}

.signup-product-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-product-icon i {
  width: 24px;
  height: 24px;
  color: #374151;
}

.signup-product-content {
  flex: 1;
  min-width: 0;
}

.signup-product-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.signup-product-card p {
  color: #666;
  line-height: 1.4;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.signup-product-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}

.signup-product-features li {
  padding: 4px 0;
  color: #4a4a4a;
  position: relative;
  padding-left: 18px;
  font-size: 0.8rem;
  line-height: 1.3;
}

.signup-product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 0.85rem;
}

.signup-product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f3f4f6;
  color: #4b5563;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}

.signup-stats-info {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 40px;
  padding: 16px 0;
}

@media (max-width: 767px) {
  .signup-products-showcase {
    flex-direction: column;
    gap: 12px;
  }

  .signup-product-card {
    padding: 16px;
  }

  .signup-product-icon {
    width: 28px;
    height: 28px;
  }

  .signup-product-icon i {
    width: 20px;
    height: 20px;
  }

  .signup-product-card h3 {
    font-size: 1rem;
  }

  .signup-product-card p {
    font-size: 0.8rem;
  }

  .signup-stats-info {
    font-size: 0.85rem;
    padding: 12px 0;
  }
}

.signup-product-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  border-bottom: 2px solid #e5e5e5;
  justify-content: center;
}

.signup-product-tab {
  padding: 16px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.signup-product-tab strong {
  font-size: 1rem;
  display: block;
}

.signup-product-tab .tab-description {
  font-size: 0.75rem;
  font-weight: 400;
  color: #999;
  white-space: nowrap;
}

.signup-product-tab:hover {
  color: #1976d2;
}

.signup-product-tab:hover .tab-description {
  color: #666;
}

.signup-product-tab.active {
  color: #1976d2;
  border-bottom-color: #1976d2;
}

.signup-product-tab.active .tab-description {
  color: #666;
}

.signup-product-tab i {
  width: 20px;
  height: 20px;
}

.signup-plans-section {
  margin-bottom: 48px;
}

.signup-product-intro {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.signup-product-intro h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: #1a1a1a;
  font-weight: 600;
}

.signup-product-intro p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.api-features,
.webapp-features {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.api-feature,
.webapp-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
}

.api-feature .lucide-icon-inline,
.webapp-feature .lucide-icon-inline {
  width: 16px;
  height: 16px;
  color: #10b981;
}

.signup-plans-section h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.signup-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.signup-plan-card {
  position: relative;
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.signup-plan-card:hover {
  border-color: #1976d2;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.signup-plan-enterprise {
  border-color: #1976d2;
  background: linear-gradient(to bottom, #f8fbff, #fff);
}

.signup-plan-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #1976d2;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.signup-plan-header {
  margin-bottom: 24px;
  text-align: center;
}

.signup-plan-header h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.signup-price-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.signup-price-tag .price-from {
  font-size: 0.875rem;
  color: #666;
}

.signup-price-tag .price {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.signup-price-tag .period {
  font-size: 0.9rem;
  color: #666;
  white-space: nowrap;
}

.signup-plan-description {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.signup-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.signup-plan-features li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: #4a4a4a;
  font-size: 0.875rem;
  line-height: 1.4;
}

.signup-plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.signup-plan-select,
.signup-plan-contact {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signup-selected-plan {
  background: #f0f7ff;
  border: 1px solid #dbeafe;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  color: #1e40af;
}

.signup-sales-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.signup-sales-form h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.signup-sales-form > p {
  color: #666;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.signup-sales-info {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e5e5e5;
}

.signup-sales-info h4 {
  margin-bottom: 20px;
  color: #1a1a1a;
}

.signup-sales-contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.signup-sales-contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
}

.signup-sales-contact-option i {
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1976d2;
  flex-shrink: 0;
}

.signup-sales-contact-option strong {
  display: block;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.signup-sales-contact-option span {
  font-size: 0.875rem;
  color: #666;
}

.signup-pricing-summary {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
}

.signup-pricing-summary h4 {
  margin-bottom: 16px;
  color: #1f2937;
}

.signup-order-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: #4b5563;
}

.signup-order-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #e5e7eb;
  font-weight: 600;
  color: #1f2937;
  font-size: 1.1rem;
}

.signup-plans-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.signup-plan-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.signup-plan-row:last-child {
  border-bottom: none;
}

.signup-plan-row:hover {
  background-color: #f8f9fa;
}

.signup-plan-featured {
  background-color: #f0f7ff;
  border: 2px solid #e0f2fe;
  margin: -2px;
  position: relative;
  z-index: 1;
}

.signup-plan-info h4 {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: #1a1a1a;
  font-weight: 600;
}

.signup-plan-summary {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

.signup-plan-popular {
  display: inline-block;
  background: white;
  color: #2563eb;
  border: 1px solid #2563eb;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
}

.signup-plan-popular .lucide-icon-inline {
  width: 12px;
  height: 12px;
  vertical-align: middle;
  margin-right: 4px;
  fill: #2563eb;
}

.signup-plan-highlights {
  display: flex;
  gap: 16px;
  padding: 0 24px;
}

.highlight-item {
  font-size: 0.875rem;
  color: #4a4a4a;
  position: relative;
  padding-left: 16px;
}

.highlight-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.signup-plan-price {
  text-align: right;
  padding: 0 24px;
}

.signup-plan-price .price-from {
  font-size: 0.75rem;
  color: #666;
  display: block;
}

.signup-plan-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.signup-plan-price .period {
  font-size: 0.875rem;
  color: #666;
}

.signup-plan-action {
  padding-left: 24px;
}

.btn-sm {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
}

.signup-plans-details {
  text-align: center;
  margin-top: 16px;
}

.signup-compare-link {
  color: #1976d2;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.signup-compare-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .signup-plan-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .signup-plan-highlights {
    padding: 0;
    flex-wrap: wrap;
    gap: 8px;
  }

  .highlight-item {
    font-size: 0.75rem;
    background: #f3f4f6;
    padding: 4px 8px 4px 20px;
    border-radius: 4px;
  }

  .signup-plan-price {
    text-align: left;
    padding: 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
  }

  .signup-plan-price .price {
    font-size: 1.25rem;
  }

  .signup-plan-action {
    padding: 0;
  }

  .signup-plan-action button {
    width: 100%;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .signup-plan-row {
    grid-template-columns: 1.5fr auto auto auto;
    padding: 16px 20px;
  }

  .signup-plan-highlights {
    padding: 0 16px;
    gap: 12px;
  }

  .highlight-item {
    font-size: 0.8rem;
  }

  .signup-plan-price {
    padding: 0 16px;
  }

  .signup-plan-action {
    padding-left: 16px;
  }
}

@media (max-width: 1200px) {
  .signup-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .signup-product-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .signup-product-tab {
    padding: 12px 16px;
    font-size: 0.9rem;
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }

  .signup-product-tab .tab-description {
    font-size: 0.65rem;
  }

  .signup-plans-grid {
    grid-template-columns: 1fr;
  }

  .signup-product-intro h3 {
    font-size: 1.5rem;
  }

  .signup-product-intro p {
    font-size: 1rem;
  }

  .api-features,
  .webapp-features {
    gap: 16px;
  }

  .api-feature,
  .webapp-feature {
    font-size: 0.85rem;
  }

  .signup-sales-form {
    padding: 24px;
  }

  .signup-sales-contact-options {
    grid-template-columns: 1fr;
  }
}
