/* ===== Body & Hero ===== */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  animation: slideIn 2s ease-out forwards;
  overflow-x: hidden;
}

.hero {
  display: flex;
  flex-direction: column;
  background-color: black;
  background-image: url("/assets/bg.webp");
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
}

.hero-content {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 15rem auto 5rem auto;
  padding: 0 2rem;
  font-weight: 400;
}

.hero-heading {
  transition-timing-function: ease;
  transition-duration: 0.6s;
  transition-delay: 0.0990826s;
  width: 70%;
  font-size: 50px;
}

.hero-subtext {
  display: flex;
  flex-direction: row;
  font-size: 16px;
  font-weight: 400;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.hero-cta-button {
  display: flex;
  gap: 15px;
}

.cta-button {
  width: 150px;
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Primary Gradient Button */
.join-btn {
  background: linear-gradient(98.06deg, #e1a3ff 15.47%, #600db4 97.95%);
  border: none;
  color: white;
}
.join-btn:hover {
  background: white;
  color: #600db4;
}

/* Secondary Transparent Button */
.demo-btn {
  background: #363636b2;
  border: 1px solid #ffffff;
  color: white;
}
.demo-btn:hover {
  background: #ffffff;
  color: #363636;
  border: 1px solid #363636;
}

.hero-location {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  align-self: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 50px;
}
.features {
  background-color: #600db4;
  color: #ffffff;
  padding: 30px 20px;
  text-align: left;
}

.features-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.features-hashtag {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
}

.preSlide,
.preFade {
  transition: all 0.6s ease !important;
  font-size: 50px;
  font-weight: 600;
}
.app-features-header {
  margin-top: 100px;
  margin-bottom: 50px;
  text-align: center;
  align-items: center;
}

.app-features-title {
  transition-timing-function: ease;
  transition-duration: 0.6s;
  transition-delay: 0.0990826s;
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  margin: 0 20px;
}

.highlight {
  color: #600db4;
}

/* Feature Rows */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: #fafafa;
  border-radius: 12px;
  padding: 20px;
  align-items: center;
  margin: 20px 185px;
}

/* Text Content */
.feature-text {
  padding: 20px;
}

.feature-text h2,
.feature-text h3 {
  margin-bottom: 30px;
  font-size: 32px;
  color: #474747;
  font-weight: 600;
}

.feature-text p {
  font-size: 16px;
  color: #7d7d7d;
  font-weight: 400;
  line-height: 27px;
}

/* Images */
.feature-image {
  display: flex;
  justify-content: flex-end;
  margin-right: 30px;
}

.feature-image img {
  width: 90%;
  height: 264px;
  border-radius: 8px;
  object-fit: contain;
}

/* Adjustments for alternating layouts */
.feature-image.left {
  justify-content: flex-start;
  margin-right: 0;
  margin-left: 30px;
}

.feature-image.column {
  flex-direction: column;
  align-items: center;
}

.feature-image.column img:first-child {
  width: 50%;
}

.feature-image.column img:last-child {
  width: 30%;
  margin-top: 10px;
}

/* ===== Custom Accordion ===== */

.cta-section {
  text-align: center;
  margin-top: 150px;
}

.cta-heading {
  transition-timing-function: ease;
  transition-duration: 0.6s;
  transition-delay: 0.0990826s;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
}

.cta-highlight {
  color: #600db4;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* 50% text, 50% image */
  gap: 20px;
  border-radius: 12px;
  padding: 20px;
  align-items: center;

  /* margin: 20px 190px; */
}

.cta-image-container {
  display: flex;
  justify-content: flex-end;
  margin-right: 30px;
  align-items: flex-start;
}

.cta-image {
  width: 100%;
  max-height: 800px;
  border-radius: 8px;
  object-fit: cover;
}

.custom-accordion {
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  margin: 2rem auto;
}

input[type="radio"] {
  display: none;
}

.custom-accordion-label {
  display: block;
  padding: 18px 15px;
  font-size: 24px;
  font-weight: bold;
  color: #7d7d7d;
  border-radius: 16px 16px 0 0;
  cursor: pointer;
  text-align: left;
}

.custom-accordion-content {
  display: none;
  padding: 10px 15px 10px 50px;
  background: #f6f6f6;
  font-size: 0.9rem;
  border-radius: 0 0 16px 16px;
  text-align: left;
}

input[type="radio"]:checked + .custom-accordion-label {
  background: #f6f6f6;
  color: #686868;
}

input[type="radio"]:checked
  + .custom-accordion-label
  + .custom-accordion-content {
  display: block;
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  background: #f7f7f7;
}

.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  cursor: pointer;
  font-size: 1rem;
}

.accordion-title:hover {
  background: #eaeaea;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  line-height: 1.6;
  background: #f7f7f7;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding-bottom: 15px;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(90deg);
}
.theme {
  margin: 150px 30px;
}

.theme-heading {
  transition-timing-function: ease;
  transition-duration: 0.6s;
  transition-delay: 0.0990826s;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin: 0 25px;
}

.theme-highlight {
  color: #600db4;
}

.theme-image-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 90px;
}

.theme-image {
  width: 100%;
  max-height: 570px;
  border-radius: 8px;
  object-fit: cover;
  object-fit: contain; /* Keep both as in original */
}

.what_agents_say {
  margin: 150px 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* allows responsiveness */
  gap: 40px;
}

.agents-heading {
  transition-timing-function: ease;
  transition-duration: 0.6s;
  transition-delay: 0.0990826s;
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  margin: 0 30px;
  align-items: center;
}

.agents-highlight {
  color: #600db4;
}

.vrefyd-highlight {
  color: #600db4;
}

.testimonial {
  text-align: center;
  max-width: 500px;
  margin: 20px auto 0 auto;
}

.agent-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: start;
}

.agent-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.agent-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #474747;
  gap: 16px;
  justify-content: center;
  text-align: center;
  margin-top: 16px;
}

.agent-name {
  color: #474747;
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
}

.agent-info {
  color: #7d7d7d;
  font-weight: 400;
}
.subscription {
  text-align: center;
}

.subscription-heading {
  font-size: 46px;
  margin-bottom: 10px;
}

.subscription-text {
  font-size: 18px;
  margin-bottom: 20px;
}

.subscription-button {
  display: inline-flex;
  align-items: center;
  background: #000000;
  color: #fff;
  padding: 10px 10px 10px 19px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s ease;
  margin-top: 28px;
}

.subscription-button:hover {
  background: #222222; /* optional hover effect for better UX */
}

.subscription-arrow {
  width: 40px;
  height: 40px;
  margin-left: 10px;
}

.join-family {
  margin-top: 140px;
  padding: 50px;
  padding-bottom: 100px;
  background: url("assets/bg1.webp") no-repeat center center/cover;
  text-align: center;
}

.join-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 60px;
}

.join-highlight {
  color: #600db4;
}

.join-cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.agent-card,
.owner-card {
  min-width: 280px;
  max-width: 350px;
}

.iamAgent h3,
.owner-content h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

.iamAgent h6,
.owner-content h6 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.iamAgent button,
.owner-content button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  border: none;
  background-color: #600db4;
  color: #fff;
  transition: background 0.3s ease;
}

.iamAgent button:hover,
.owner-content button:hover {
  background-color: #4b089b;
}
.faq-section {
  margin: 150px 30px;
}

@media (max-width: 1200px) {
  .features div {
    padding: 20px 10px !important;
  }

  .app-features div[style*="margin: 20px 185px"] {
    margin: 20px 50px !important;
  }

  .cta-section div[style*="margin: 20px 190px"] {
    margin: 20px 50px !important;
  }

  .theme div[style*="margin: 90px 185px"] {
    margin: 90px 50px !important;
  }
  .hero-content {
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media (max-width: 768px) {
  /* Hero section */
  .hero h1[style*="width: 70%"] {
    width: 90% !important;
    font-size: 32px !important;
  }

  .hero-content div[style*="flex-direction: row"] {
    flex-direction: column !important;
    text-align: center;
  }

  .features {
    padding: 50px 20px;
  }

  .features-text {
    font-size: 18px;
    padding: 50px 20px;
  }
  .hero-content div[style*="justify-content: left"] {
    justify-content: center !important;
    flex-wrap: wrap;
  }
  .hero-content h1[style*="font-size: 42px"] {
    font-size: 32px !important;
  }

  /* Features section */
  .features div[style*="padding: 100px 21rem"] {
    padding: 60px 20px !important;
    line-height: 1.5 !important;
  }

  .features div[style*="font-size: 32px"] {
    font-size: 24px !important;
  }

  .features span[style*="font-size: 20px"] {
    font-size: 16px !important;
  }

  /* App features grid */
  .app-features div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin: 20px 20px !important;
    padding: 15px !important;
  }

  .app-features div[style*="justify-content: flex-end"] {
    justify-content: center !important;
    margin-right: 0 !important;
  }

  .app-features div[style*="margin-right: 30px"] {
    margin-right: 0 !important;
    justify-content: center !important;
  }

  .app-features h2[style*="font-size: 32px"],
  .app-features h3[style*="font-size: 32px"] {
    font-size: 24px !important;
    margin-bottom: 15px !important;
  }

  .cta-section {
    grid-template-columns: 1fr !important;
    margin: 150px 20px !important;
  }

  .what_agents_say p[style*="margin: 35px 155px"] {
    margin: 20px 20px !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
  }

  .subscription {
    /* width: 80% !important; */
    padding: 60px 20px !important;
    align-items: center !important;
  }

  .subscription h2[style*="font-size: 46px"] {
    font-size: 32px !important;
  }

  .join-section div[style*="justify-content: center; gap: 50px;"] {
    flex-direction: column !important;
    gap: 30px !important;
    align-items: center !important;
  }

  .join-section div[style*="width: 320px; height: 380px;"] {
    width: 90% !important;
    max-width: 400px !important;
    padding: 40px !important;
  }

  .accordion-container {
    padding: 0 20px !important;
  }

  h1[style*="font-size: 42px"] {
    font-size: 32px !important;
  }
  .feature-row {
    grid-template-columns: none;
    display: flex;
    flex-direction: column;
    margin: 20px 40px;
  }
  .feature-row.reverse {
    flex-direction: column-reverse;
  }

  .feature-text {
    text-align: center;
  }

  .feature-image {
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }

  .feature-image img {
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 250px;
  }
  .feature-image.right {
    align-items: center;
  }
  .feature-image.column {
    margin: 0;
    flex-direction: row;
  }

  .feature-text h2,
  .feature-text h3 {
    font-size: 26px;
  }

  .feature-text p {
    font-size: 15px;
  }
  .cta-grid {
    grid-template-columns: none !important;
    margin: 20px 40px !important;
    text-align: left;
  }
  .cta-image-container {
    justify-content: center !important;
    margin: 0 !important;
    margin-top: 20px !important;
  }
  .subscription-heading {
    font-size: 34px;
  }

  .subscription-text {
    font-size: 15px;
  }

  .subscription-button {
    font-size: 14px;
    padding: 7px 7px 7px 14px;
  }

  .subscription-arrow {
    width: 32px;
    height: 32px;
  }
  .join-family {
    padding: 40px 30px 80px 30px;
  }

  .join-cards {
    gap: 30px;
  }
  .hero-content {
    margin-top: 10rem;
    font-size: 1.1rem;
  }

  footer {
    flex-direction: column;
    padding: 30px 5%;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }

  .iamAgent h3,
  .owner-content h3 {
    font-size: 20px;
    font-weight: 500;
  }

  .iamAgent h6,
  .owner-content h6 {
    font-size: 15px;
  }

  .iamAgent button,
  .owner-content button {
    font-size: 15px;
    padding: 9px 18px;
  }
  .faq-section {
    margin: 100px 10px;
  }

  .preSlide,
  .preFade {
    transition: all 0.6s ease !important;
    font-size: 50px;
    font-weight: 600;
  }
}

@media (max-width: 480px) {
  .hero-content div[style*="justify-content: left"] {
    flex-direction: column !important;
    align-items: center !important;
  }
  .hero-content h1[style*="font-size: 42px"] {
    padding: 20px;
    align-items: "left";
    position: relative;
    font-size: 1.5rem;
    font-weight: 400;
  }
  .cta-button[style*="width: 150px"] {
    width: 140px !important;
  }

  .features {
    padding: 50px 30px;
  }

  .features-text {
    font-size: 18px;
    padding: 50px 30px;
  }
  .app-features div[style*="margin: 20px 185px"] {
    margin: 20px 10px !important;
  }

  .subscription {
    border-radius: 20px !important;
  }

  .subscription h2[style*="font-size: 46px"] {
    font-size: 28px !important;
  }

  .subscription p[style*="font-size: 18px"] {
    font-size: 16px !important;
  }
  .testimonial {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    margin: 1.5rem 1rem;
  }
  .hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: left;
  }
  .hero {
    background-size: cover;
    background-position: 70% 70%;
    background-repeat: no-repeat;
    position: relative;
    background-color: #000000;
  }
  .iamAgent h3 {
    font-size: 16px;
  }
  .iamAgent .h6 {
    font-size: 12px;
  }
  .preSlide,
  .preFade {
    transition: all 0.6s ease !important;
    font-size: 36px;
    font-weight: 600;
  }
  .hero-content {
    margin-top: 8rem;
    font-size: 1rem;
    padding: 0 1rem;
  }

  .accordion-title {
    font-size: 0.9rem;
    padding: 15px 10px;
  }

  .accordion-content {
    font-size: 0.8rem;
    padding-left: 30px;
  }

  footer {
    padding: 20px 3%;
  }
  .features-text {
    padding: 80px 20px;
    font-size: 20px;
    line-height: 1.6 !important;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.testimonial {
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  color: #474747;
  margin: 3rem auto;
  margin-bottom: 4rem;
  max-width: 800px;
  font-weight: 500;
  padding: 0 1.5rem;
  transition: all 0.6s ease;
  word-wrap: break-word;
}
.subscription {
  margin-top: 150px;
  background: url("/assets/subBg.png") no-repeat center center/cover;
  border-radius: 12px;
  /* width: 85%; */
  margin: 50px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 115px 0px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 42px;
}
.hero-cta-button {
  display: flex;
  gap: 20px;
  justify-content: left;
}
.features-text {
  font-size: 32px;
  padding: 50px 21rem;
  max-width: 800px;
  line-height: 60px;
  font-weight: 500;
  color: #ffffff;
}

.agent-card {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 320 / 380;
  background: url("/assets/iamAgent.png") no-repeat center center/cover;
  border-radius: 12px;
  padding: 4rem 2rem 2rem 2rem;
  color: #fff;
  text-align: left;

  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s ease;
}

.agent-card h3 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.agent-card h6 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #d7d7d7;
  margin: 0 0 1.5rem 0;
}

.agent-card button {
  background: linear-gradient(98.06deg, #e1a3ff 15.47%, #600db4 97.95%);
  border: none;
  padding: 0.8rem 2.5rem;
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s ease;
}

.agent-card button:hover {
  opacity: 0.9;
}
.owner-card {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 320 / 380;
  background: url("/assets/iamOwner.png") no-repeat center center/cover;
  border-radius: 12px;
  padding: 4rem 2rem 2rem 2rem;
  color: #000000;
  text-align: left;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s ease;
}

.owner-card h3 {
  font-size: 2rem; /* 32px */
  font-weight: 400;
  margin: 0 0 0.5rem 0;
}

.owner-card h6 {
  font-size: 1rem; /* 16px */
  font-weight: 400;
  line-height: 1.8; /* ~29px */
  color: #7d7d7d;
  margin: 0 0 1.5rem 0;
}

.owner-card button {
  background: #000000;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s ease;
}

.owner-card button:hover {
  opacity: 0.9;
}

@media (max-width: 992px) {
  .hero-content {
    margin-top: 12rem;
    font-size: 1.3rem;
  }

  .accordion-title {
    padding: 20px 15px;
    font-size: 0.95rem;
  }

  .accordion-content {
    padding: 0 15px;
    font-size: 0.85rem;
  }
}
