@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
:root {
  --primary-yellow: #ffd200;
  --secondary-green: #e2f5b6;
  --text-dark: #111827;
  --text-gray: #4b5563;
  --bg-light: #ffffff;
  --bg-soft: #f9fafb;
  --radius-full: 9999px;
  --radius-lg: 24px;
  --transition: all 0.3s ease;
  --font-family: "Figtree", sans-serif;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  line-height: 1.5;
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1,
h2,
h3,
.logo__text,
.nav__link,
.btn {
  font-family: var(--font-family);
}

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

/* Header Styles */
.header {
  padding: 1.5rem 0;
  background: #fff;
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo .logo__image img {
  height: 100%;
  width: 100%;
}

.logo__image {
  width: 13.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo__highlight {
  background: var(--primary-yellow);
  color: #000;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo__icon {
  font-size: 1rem;
}

.flag {
  width: 32px;
  height: auto;
  border-radius: 4px;
}

.nav__list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  background: #fff;
  padding: 0.5rem;
}

.nav__link {
  text-decoration: none;
  color: var(--text-dark);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  background: var(--secondary-green);
}

.nav__link:hover,
.nav__link.active {
  background: #d4f28d;
  transform: translateY(-2px);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-gray);
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  border-radius: 50%;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-yellow);
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
}

.hero__top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}

.hero__subtitle {
  display: block;
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 2rem;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn--primary {
  background-color: var(--primary-yellow);
  color: var(--text-dark);
}

.btn--primary:hover {
  background-color: #facc15;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(254, 240, 138, 0.4);
}

.hero__description {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 500px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.rating {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rating__stars {
  color: #f59e0b;
}

.rating__value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-family);
}

.rating__label {
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-gray);
}

.rating__count {
  font-size: 0.8rem;
  color: var(--text-gray);
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.app-btn img {
  height: 48px;
  width: auto;
}

/* Hero Cards */
.hero__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 1.5rem;
}

.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 420px;
}

.card--image img,
.card--video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card--yellow {
  background-color: var(--primary-yellow);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card__number {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-family);
  display: block;
  line-height: 1;
}

.card__number sup {
  font-size: 1.5rem;
}

.card__text {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.card__list {
  list-style: none;
  margin: 2rem 0;
}

.card__list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}

.dot {
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
}

.card__subtext {
  font-size: 0.95rem;
  opacity: 0.8;
}

.card__link {
  text-decoration: none;
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.card--video {
  position: relative;
}

.play-btn {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: 60px;
  height: 60px;
  background: var(--primary-yellow);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 210, 0, 0.5);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-dark);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .header__content {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 1.5rem;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    padding: 5rem 2rem;
  }

  .nav.active {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav__link {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
  }

  .header__right {
    display: none;
  }
  .header__left {
    width: 100%;
    justify-content: space-between;
  }

  .hero__top {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__description {
    margin: 0 auto 2rem;
  }

  .hero__meta {
    justify-content: center;
    gap: 2rem;
  }

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

  .card {
    height: 350px;
  }

  .mockup-container img {
    width: 20rem;
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 2.2rem;
  }

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

  .app-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .mockup-container img {
    width: 20rem;
  }
}

/* Signup Section */
.signup {
  padding: 6rem 0;
  background-color: var(--bg-soft);
}

.signup__header {
  text-align: center;
  margin-bottom: 2rem;
}

.signup__subtitle {
  display: block;
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.signup__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.signup__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  align-items: center;
}

.signup__visual {
  display: flex;
  justify-content: center;
}

.mockup-container {
  display: flex;
  width: 100%;
  max-width: 650px;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.mockup-container img {
  width: 20rem;
}

.signup__form-wrapper {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.form-group label span {
  color: #ef4444;
}

.form-group input,
.form-group select {
  padding: 1.1rem;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f9fafb;
  font-size: 0.95rem;
  font-family: var(--font-family);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-yellow);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 210, 0, 0.1);
}

.submit-btn {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(255, 210, 0, 0.2);
}

/* Desktop sizing for Signup */
@media (min-width: 992px) {
  .signup__header {
    margin-bottom: 4rem;
  }
  .signup__content {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
  }

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

  .submit-btn {
    width: fit-content;
    padding: 0 4rem;
  }

  .signup__visual {
    justify-content: flex-start;
  }

  .mockup-container {
    height: 600px;
  }

  .mockup-container img {
    width: 35rem;
    object-fit: contain;
  }

  .mockup {
    width: 280px;
  }

  .mockup--1 {
    top: 80px;
    left: 0;
  }

  .mockup--2 {
    top: 0;
    right: 0;
  }
}

/* Capabilities Section */
.capabilities {
  padding: 6rem 0;
  background-color: #fff;
}

.capabilities__top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.capabilities__subtitle {
  display: block;
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.capabilities__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.capabilities__description {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.capabilities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.cap-card {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.cap-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.cap-card__header {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 220px;
  border-radius: 0 0 24px 24px;
}

.cap-card__header--dark {
  background-color: var(--text-dark);
  color: #fff;
}

.cap-card__header--yellow {
  background-color: var(--primary-yellow);
  color: var(--text-dark);
}

.cap-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.cap-card__header--yellow .cap-card__icon {
  background: rgba(0, 0, 0, 0.05);
}

.cap-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.cap-card__body {
  padding: 2.5rem 2rem;
}

.cap-card__body p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Desktop sizing for Capabilities */
@media (min-width: 992px) {
  .capabilities__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .capabilities__intro {
    flex: 1;
  }

  .capabilities__desc-wrapper {
    flex: 1;
    max-width: 500px;
  }

  .capabilities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .capabilities__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Features Section (Product Features) */
.features {
  padding: 6rem 0;
  background-color: #f9fafb;
}

.features__header {
  text-align: center;
  margin-bottom: 5rem;
}

.features__subtitle {
  display: block;
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.features__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}

.features__cards {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  position: sticky;
  top: 80px; /* Offset for sticky effect */
  margin-bottom: 6rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Ensure subsequent cards have higher z-index to overlay */
.feature-card:nth-child(1) {
  z-index: 1;
}
.feature-card:nth-child(2) {
  z-index: 2;
}
.feature-card:nth-child(3) {
  z-index: 3;
}
.feature-card:nth-child(4) {
  z-index: 4;
}

.feature-card__inner {
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.feature-card__content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.feature-card__content--black {
  background-color: var(--text-dark);
  color: #fff;
}

.feature-card__content--yellow {
  background-color: var(--primary-yellow);
  color: var(--text-dark);
}

.feature-card__tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-yellow);
}

.feature-card__content--yellow .feature-card__tag {
  color: rgba(0, 0, 0, 0.5);
}

.feature-card__heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.feature-card__body p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.feature-card__image {
  flex: 1;
  min-height: 300px;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.features__cta {
  margin-top: 8rem;
  text-align: center;
}

.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.cta-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-gray);
}

.cta-text strong {
  color: var(--text-dark);
}

/* Desktop Styles for Features */
@media (min-width: 992px) {
  .feature-card__inner {
    flex-direction: row;
  }

  .feature-card__inner--reverse {
    flex-direction: row-reverse;
  }

  .feature-card__content {
    padding: 4rem;
  }

  .feature-card__image {
    min-height: unset;
  }

  .cta-wrapper {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
  }

  .cta-text {
    font-size: 1rem;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background: var(--primary-yellow);
  color: #000;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(255, 210, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background-color: #facc15;
}

/* About Section Header Adjustment */
.about {
  padding: 6rem 0;
  background-color: #fff;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.about__left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.stat-card {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f3f4f6;
}

.stat-card:last-child {
  border-bottom: none;
}

.stat-card__content {
  flex: 1;
}

.stat-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.stat-card__text {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.stat-card__badge {
  width: 100%;
  min-height: 140px;
  padding: 2rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.stat-card__badge--dark {
  background-color: var(--text-dark);
  color: #fff;
}

.stat-card__badge--yellow {
  background-color: var(--primary-yellow);
  color: var(--text-dark);
}

.stat-card__number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-family);
  line-height: 1;
}

.stat-card__number sup {
  font-size: 1.2rem;
  margin-left: 2px;
}

.stat-card__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
  opacity: 0.9;
}

.about__right {
  position: sticky;
  top: 2rem;
}

.about__subtitle {
  display: block;
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.about__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about__description {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.about__image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 992px) {
  .about__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
  }

  .stat-card {
    padding-bottom: 3rem;
  }

  .stat-card--row {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .stat-card--row-reverse {
    flex-direction: row-reverse;
    align-items: center;
    gap: 3rem;
  }

  .stat-card__badge {
    width: 180px;
    min-height: 180px;
  }

  .stat-card__number {
    font-size: 3rem;
  }

  .about__right {
    padding-top: 1rem;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background-color: var(--bg-soft);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 5rem;
}

.testimonials__subtitle {
  display: block;
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.testimonials__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.testimonial-card__quote-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  position: absolute;
  top: -22px;
  right: 15%;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card__bubble {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-bottom: 2rem;
  position: relative;
  border: 1px solid #f3f4f6;
  flex: 1;
}

.testimonial-card__bubble p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: -45px; /* Pull image up into the bubble area slightly */
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.rating-stars {
  color: var(--text-gray);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
  display: flex;
  justify-content: center;
  gap: 2px;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 500;
}

@media (min-width: 992px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .testimonial-card__bubble {
    padding: 4rem 2.5rem;
  }
}

/* Contact & FAQ Section */
.contact-faq {
  padding: 6rem 0;
  background-color: #fff;
}

.contact-faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

/* Accordion Styles */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.accordion__item {
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border: 1px solid #b3b3b3;
  overflow: hidden;
  transition: var(--transition);
}

.accordion__item.active {
  background-color: var(--text-dark);
  color: #fff;
}

.accordion__header {
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
}

.accordion__toggle {
  width: 40px;
  height: 40px;
  background-color: #e5e7eb;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-dark);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.accordion__item.active .accordion__toggle {
  background-color: var(--primary-yellow);
}

.accordion__question {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 2rem;
}

.accordion__item.active .accordion__content {
  max-height: 200px;
  padding: 0.5rem 2rem 2.5rem 5.5rem; /* Indented for content area */
}

.accordion__content p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.8;
}

/* Contact Form Styles */
.contact-form-wrapper {
  padding-left: 0;
}

.contact-header {
  margin-bottom: 0.5rem;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #115e59; /* Matching that specific dark teal/green from the screenshot */
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  color: var(--text-gray);
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.send-btn {
  width: fit-content;
  padding: 1rem 3rem;
  box-shadow: 0 8px 20px rgba(255, 210, 0, 0.3);
}

@media (min-width: 992px) {
  .contact-faq__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
  }

  .contact-form-wrapper {
    padding-left: 2rem;
  }
}

/* Collaboration Section */
.collaboration {
  padding: 8rem 0;
  background-color: var(--text-dark);
  color: #fff;
  text-align: center;
}

.collaboration__header {
  margin-bottom: 5rem;
}

.collaboration__subtitle {
  display: block;
  color: var(--primary-yellow);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.collaboration__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.collaboration__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.collaboration__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background-color: #1f2937;
  padding: 3.5rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card:hover {
  transform: translateY(-10px);
}

.info-card--highlight {
  background-color: var(--primary-yellow);
  color: var(--text-dark);
}

.info-card--highlight .info-card__tag {
  color: var(--text-dark);
}

.info-card--highlight .info-card__desc {
  color: rgba(0, 0, 0, 0.7);
}

.info-card--highlight .info-card__link {
  color: var(--text-dark);
  border-color: rgba(0, 0, 0, 0.1);
}

.info-card__tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-yellow);
  text-transform: capitalize;
}

.info-card__desc {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.info-card__link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  justify-content: center;
}

.info-card__link i {
  font-size: 1.2rem;
}

/* Footer Styles */
.footer {
  padding: 3rem 0;
  background-color: #fff;
  text-align: center;
  border-top: 1px solid #f3f4f6;
}

.footer__text {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.footer__text a {
  color: var(--primary-yellow);
  font-weight: 600;
  text-decoration: none;
}

@media (min-width: 992px) {
  .collaboration__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__title.reveal {
  transition-delay: 0.1s;
}

.card:nth-child(1).reveal {
  transition-delay: 0.2s;
}
.card:nth-child(2).reveal {
  transition-delay: 0.4s;
}
.card:nth-child(3).reveal {
  transition-delay: 0.6s;
}
