@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --white: #ffffff;
  --red1: #f26969;
  --red2: #f37676;
  --red3: #f37070;
  --red-light1: #f8a4a4;
  --red-light2: #fbdcdc;
  --red-light3: #fae6e6;
  --gray1: #262626;
  --gray2: #7a7a7a;
  --gray3: #f7efef;
  --gray4: #f5f5f5;
  --header-border: #ededed;
  --button-border: #f69898;
  
  /* CSS custom properties from the design */
  --primary: 0 84% 68%;
  --card: 0 0% 100%;
  --background: 0 0% 100%;
  --foreground: 0 0% 15%;
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 45%;
  --border: 0 0% 90%;
  --radius: .5rem;
}

.content { background:#fff!important; }

main {
  padding-top: 80px; /* To offset the fixed header */
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  text-align: left;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px; /* Space between content and image on small screens */
}

.hero-content {
  width: 100%;
}

.hero-image-placeholder {
  width: 100%;
  min-height: 200px; /* Placeholder height for smaller screens */
  border: 1px solid var(--red-light3);
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
}

@media (min-width: 1200px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .hero-content {
    width: 48%; /* Adjust as needed */
  }

  .hero-image-placeholder {
    width: 48%; /* Adjust as needed */
    min-height: 400px; /* Larger height for desktop */
  }
  .arrow-icons { display:flex!important; }
}


.chip {
  display: inline-block;
  padding: 1rem;
  border: 1px solid #ffbdbd;
  background-color: #fef0f0;
  color: hsl(0, 84%, 68%);
  border-radius: 10px;
  margin-bottom: 10px;
  line-height: 1rem;
  font-weight: 600;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  letter-spacing: -0.9px;
}

.h1-gray {
  color: var(--gray1);
}

.h1-red {
  color: var(--red3);
  padding-left:0.5rem;
}

.hero > p {
  color: var(--gray2);
  font-size: 1.25rem;
  font-weight: 400;
  width: 100%;
}

.what-you-get {
  margin-top: 30px;
}

.what-you-get-title {
  color: var(--gray1);
  font-weight: 600;
  margin-bottom: 20px;
}

.get-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.get-item svg {
  margin-right: 10px;
}

.get-item span {
  color: var(--gray2);
}

.audit-cta {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--gray4); /* Vertical separation */
}

.audit-cta-text-gray {
  color: var(--gray2);
  margin-bottom: 5px;
}

.audit-cta-text-red {
  color: var(--red1);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
}

.arrow-icons {
  display: none;
  margin-left: 15px;
}

.arrow-icons svg {
  width: 20px;
  height: 20px;
}


.arrow-icons svg:first-child {
  margin-left: 0;
}

.ai-assistant-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--white);
  border-radius: 10px;
  padding: 15px 20px;
  position: relative;
}

.ai-assistant-icon-wrapper {
  background-color: var(--red1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.ai-assistant-icon-wrapper svg {
  width: 18px;
  height: 18px;
  transform: scaleX(-1);
}

.ai-assistant-text-content {
  display: flex;
  flex-direction: column;
}

.ai-assistant-title {
  color: var(--gray1);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.ai-assistant-subtitle {
  color: var(--gray2);
  font-size: 0.875rem;
  margin: 0;
}

.audit-details-card {
  width: 100%;
  height: 100%; /* This will make it take the remaining height of its parent */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
  margin-top: 20px; /* Space between ai-assistant-card and this card */
}

.audit-details-title {
  color: var(--gray1);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.audit-details-creator,
.audit-details-model {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.audit-details-creator-text,
.audit-details-model-text {
  color: var(--gray2);
  font-size: 0.9rem;
  margin: 0;
  margin-right: 5px; /* Space between text and icon */
}

.audit-details-model-text {
  color: var(--gray2);
  font-size: 0.9rem;
  margin: 0;
  margin-left: 5px; /* Space between text and icon */
}

.how-it-works-section {
  background-color: #fcfcfc;
  padding: 60px 20px;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Stack vertically on small screens */
  gap: 40px;
}

@media (min-width: 1200px) {
  .how-it-works-container {
    flex-direction: row; /* Two columns on larger screens */
    justify-content: space-between;
  }

  .how-it-works-video,
  .how-it-works-content {
    flex: 1;
  }

  .how-it-works-video {
    margin-right: 40px; /* Space between columns */
  }
}

.how-it-works-video iframe {
  width: 100%;
  height: 315px; /* Standard YouTube embed height */
  border-radius: 10px;
}

.how-it-works-content h3 {
  color: var(--gray1);
  margin-bottom: 20px;
  margin-top:-10px;
}

.how-it-works-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.how-it-works-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.list-number-circle {
  background-color: var(--red1);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 15px;
}

.how-it-works-list li p {
  color: var(--gray2);
  margin: 0;
}

.audit-details-creator svg,
.audit-details-model svg {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.audit-details-question {
  color: var(--gray1);
  font-size: 1.08rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 50px;
}

.chat-gpt-iframe {
  width: 100%;
  height: 400px; /* Or some other suitable height */
  border: 1px solid var(--gray4);
  border-radius: 10px;
  margin-top: 20px; /* Space between card and iframe */
}

.why-audit-section {
  background-color: var(--white);
  padding: 60px 20px;
}

.why-audit-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Stack vertically on small screens */
  gap: 40px;
}

@media (min-width: 1200px) {
  .why-audit-container {
    flex-direction: row; /* Two columns on larger screens */
    justify-content: space-between;
  }

  .why-audit-content,
  .why-audit-image-placeholder {
    flex: 1;
  }

  .why-audit-content {
    margin-right: 40px; /* Space between columns */
  }
}

.why-audit-content h3 {
  color: var(--gray1);
  margin-bottom: 20px;
}

.why-audit-description {
  color: var(--gray2);
  margin-bottom: 30px;
}

.why-audit-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-audit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.why-audit-icon-wrapper {
  background-color: var(--gray4);
  border-radius: 8px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.why-audit-icon-wrapper svg {
  width: 30px;
  height: 30px;
}

.why-audit-item-text {
  display: flex;
  flex-direction: column;
}

.why-audit-item-title {
  color: var(--gray1);
  font-weight: 600;
  margin: 0 0 5px 0;
}

.why-audit-item-description {
  color: var(--gray2);
  margin: 0;
}

.cta-section {
  background-color: var(--white);
  padding: 0px 20px;
  text-align: center;
}

.final-cta-content, .cta-content {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.final-cta-content p, .cta-content p {
  color: var(--gray2);
}

.final-cta-content p { color: var(--gray1); }
.final-cta-content { margin-top:5rem; margin-bottom:10rem; }

.cta-content h2 {
  color: var(--gray1);
  margin-bottom: 20px;
}

.cta-description {
  color: var(--gray2);
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-button:hover {
  background:#000!important;
  color:#fff!important;
}

.cta-button svg {
  transition: transform 0.2s ease-in-out;
}

.cta-button:hover svg {
  transform: translateX(5px); /* Move arrow to the right on hover */
}

.floating-chat-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--red1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  z-index: 1000; /* Ensure it's above other content */
}

.floating-chat-button:hover {
  transform: scale(1.1); /* Zoom effect */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.floating-chat-button svg {
  width: 30px;
  height: 30px;
}

.why-audit-image-placeholder {
  /*min-height: 300px;*/
  border-radius: 10px;
}

.why-audit-image-placeholder .legend {
  text-align: left;
  font-size: 90%;
}

.why-audit-image-placeholder img {
  max-width:85%; /* avoid pixelation */
}

.faq-intro-section {
  background-color: #fcfcfc;
  padding: 60px 20px;
  text-align: center;
}

.faq-intro-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-intro-content h3 {
  color: var(--gray1);
  margin-bottom: 10px;
}

.faq-intro-description {
  color: var(--gray2);
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Accordion styles */
.accordion-container {
  width: 100%;
  max-width: 800px; /* Adjust as needed */
  margin-top: 30px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--header-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden; /* Ensures content inside respects border-radius */
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: var(--white);
  color: var(--gray1);
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--gray4);
}

.faq-question p {
  margin: 0;
}

.faq-question .chevron {
  transition: transform 0.3s ease;
}

.faq-question .chevron.rotate {
  transform: rotate(180deg);
}

.faq-answer {
  background-color: var(--white);
  color: var(--gray2);
  padding: 0 20px; /* Initial padding for closed state */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  text-align: left; /* Align text to the left */
}

.faq-answer p {
  margin-top: 0;
  margin-bottom: 10px; /* Add some bottom margin to the paragraph inside the answer */
  line-height: 1.5;
}

/* Review Section Styles */
.review-section {
  background-color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.review-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.review-container form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-section h3 {
  color: var(--gray1);
  margin-bottom: 0;
}

.star-rating {
  color: var(--gray2); /* Default star color */
  cursor: pointer;
  margin-bottom: 20px; /* Added vertical spacing */
}

.star-rating .star {
  transition: color 0.2s ease-in-out;
}

.star-rating .star.selected,
.star-rating .star.hover {
  color: gold; /* Selected/hovered star color */
}

.review-textarea {
  width: 100%;
  height: 120px;
  padding: 15px;
  border: 1px solid var(--header-border);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  color: var(--gray1);
  resize: vertical;
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  margin-bottom: 20px; /* Added vertical spacing */
}

.review-textarea::placeholder {
  color: var(--gray2);
}

.submit-review-button {
  background-color: var(--red1);
  color: var(--white);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
  width: 100%;
}

.submit-review-button:hover {
  background-color: var(--red2);
  transform: translateY(-2px);
}

/* Hero Image Placeholder Content Styles */
.hero-image-placeholder {
  background: #ffffffb3;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.1);
}

.rounded-lg {
  border-radius: var(--radius);
}

.border {
  border-width: 1px;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
}

.p-6 {
  padding: 1.5rem;
}

.bg-card {
  background-color: hsl(var(--card));
}

.text-card-foreground {
  color: hsl(var(--card-foreground));
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.space-x-3 > * + * {
  margin-left: 0.75rem;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.bg-primary {
  background-color: hsl(var(--primary));
}

.rounded-full {
  border-radius: 9999px;
}

.justify-center {
  justify-content: center;
}

.font-semibold {
  font-weight: 600;
}

.text-sm {
  font-size: 1em;
  line-height: 1em;
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.bg-muted {
  background-color: hsl(var(--muted));
}

.overflow-hidden {
  overflow: hidden;
}

.border-border {
  border-color: hsl(var(--border));
}

.p-4 {
  padding: 1rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.items-start {
  align-items: flex-start;
}

.space-x-3 > * + * {
  margin-left: 0.75rem;
}

.w-8 {
  width: 3rem;
}

.clear-bg {
  background: #fafafa;
  border-radius: 10px;
}
.h-8 {
  height: 3rem;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.bg-background {
  background-color: hsl(0 0% 90%);
}

.rounded-tl-none {
  border-top-left-radius: 0;
}

.p-3 {
  padding: .75rem;
}

.text-foreground {
  color: hsl(var(--foreground));
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
}

.justify-end {
  justify-content: flex-end;
}

.rounded-tr-none {
  border-top-right-radius: 0;
}

.border-t {
  border-top-width: 1px;
}

.bg-muted-30 {
  background-color: hsl(var(--muted) / 0.3);
}

.bg-primary-10 {
  background-color: hsl(var(--primary) / 0.1);
}

.border-primary-20 {
  border-color: hsl(var(--primary) / 0.2);
}

.glass-effect {
  background: #ffffffb3;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.1);
}

.gradient-coral {
  background: linear-gradient(135deg, hsl(var(--primary)), #f58a8a);
}

.inline-flex {
  display: inline-flex;
}

.gap-2 {
  gap: .5rem;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.ring-offset-background {
  --tw-ring-offset-color: hsl(var(--background));
}

.h-12 {
  height: 3rem;
}

.rounded-md {
  border-radius: calc(var(--radius) - 2px);
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.w-full {
  width: 100%;
}

.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}

.transition-all {
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
  transition-duration: 0.3s;
}

.text-white {
  color: white;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:shadow-2xl:hover {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
}

.transition-transform {
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.lucide {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.text-xs {
  font-size: .75rem;
  line-height: 1rem;
}

/*.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}

.btn:hover {
  color: white;
}*/

.text-xs {
  font-size: 1rem;
  line-height: 1rem;
}

.hover\:translate-x-1:hover {
  transform: translateX(0.25rem);
}

/* Hero Image Placeholder internal styles */
.hero-image-placeholder h3 {
  margin-top: 0;
  margin-bottom: 0;
}

.hero-image-placeholder .lucide-message-square {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-sm {
  font-size: 1.5rem;
  line-height: 1.7rem;
}

/* Align first lucide-message-square icon and its container to the left of h3 */
.hero-image-placeholder > div:first-child .flex.items-center.space-x-3 {
  align-items: flex-start;
}

.hero-image-placeholder > div:first-child .flex.items-center.space-x-3 > div:first-child {
  margin-top: 0;
  align-self: flex-start;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--gray2);
  transition: color 0.2s;
  line-height: 1;
}

.modal-close:hover {
  color: var(--gray1);
}

.modal-content h2 {
  color: var(--gray1);
  margin-bottom: 10px;
  margin-top: 0;
}

.modal-subtitle {
  color: var(--gray2);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--gray1);
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--header-border);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--gray1);
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red1);
}

.form-group textarea {
  resize: vertical;
}

.submit-button {
  width: 100%;
  padding: 14px 20px;
  background-color: var(--red1);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.submit-button:hover {
  background-color: var(--red2);
  transform: translateY(-2px);
}

.submit-button:disabled {
  background-color: var(--gray2);
  cursor: not-allowed;
  transform: none;
}


