.hero-section {
  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;
  padding-top: 80px;
  padding-bottom: 35px;
}

.hero-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  align-items: center;

  gap: 60px;
}

.hero-content {
  position: relative;

  z-index: 2;
}

.hero-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 20px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.08);

  margin-bottom: 30px;

  font-size: 14px;
}

.hero-title {
  font-size: 40px;

  line-height: 1.1;

  margin-bottom: 30px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.hero-description {
  max-width: 620px;

  color: var(--light-text);

  font-size: 18px;

  line-height: 1.9;

  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;

  gap: 24px;

  margin-bottom: 60px;
}

.secondary-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 34px;

  border-radius: 60px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  transition: 0.3s ease;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats {
  display: flex;

  gap: 20px;

  flex-wrap: wrap;
}

.hero-stat-card {
  padding: 25px 20px;

  min-width: 160px;
}

.hero-stat-card h3 {
  font-size: 32px;

  margin-bottom: 10px;
}

.hero-stat-card p {
  color: var(--light-text);
}

.hero-visual {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;
}

.hero-image-wrapper {
  position: relative;

  padding: 40px;

  border-radius: 40px;

  z-index: 2;
}

.hero-image-wrapper img {
  width: 100%;

  max-width: 500px;
}

.hero-glow {
  position: absolute;

  /* width: 500px; */
  /* height: 500px; */
  width: min(500px, 90vw);
  height: min(500px, 90vw);

  background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent 70%);

  filter: blur(60px);

  z-index: 1;
}

.floating-card {
  position: absolute;

  bottom: 20px;
  left: -20px;

  padding: 20px 25px;

  z-index: 3;
}

.floating-card h4 {
  margin-bottom: 10px;
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 60px;
}

.services-header {
  max-width: 760px;

  margin: auto auto 70px;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.service-card {
  position: relative;

  /* padding: 40px; */
  padding: 50px 40px;
  transition: 0.4s ease;

  overflow: hidden;
}

.service-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.08),
    rgba(6, 182, 212, 0.08)
  );

  opacity: 0;

  transition: 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 34px;

  border-radius: 24px;

  margin-bottom: 30px;

  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.2),
    rgba(6, 182, 212, 0.2)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card h3 {
  font-size: 24px;

  margin-bottom: 18px;
}

.service-card p {
  color: var(--light-text);

  line-height: 1.8;
}

/* =========================
   CHATBOT SECTION
========================= */
.chatbot-section {
  position: relative;

  padding-top: 60px;
}
.chatbot-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 80px;

  align-items: center;
}
.chatbot-content h2 {
  font-size: 40px;
}
.chatbot-features {
  margin-top: 40px;

  display: flex;

  flex-direction: column;

  gap: 20px;
}

.chat-feature {
  display: flex;

  gap: 20px;

  align-items: center;

  padding: 24px;
}

.chat-feature span {
  width: 60px;
  height: 60px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 20px;

  font-size: 24px;

  background: rgba(255, 255, 255, 0.08);
}

.chat-feature h4 {
  margin-bottom: 8px;
}

.chat-feature p {
  color: var(--light-text);

  font-size: 14px;
}

.chatbot-visual {
  position: relative;
}

.chat-window {
  padding: 40px;

  border-radius: 32px;

  max-width: 500px;

  margin-left: auto;
}

.chat-topbar {
  margin-bottom: 30px;

  padding-bottom: 20px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-profile {
  display: flex;

  align-items: center;

  gap: 15px;
}

.chat-avatar {
  width: 55px;
  height: 55px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;

  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.chat-profile p {
  color: #62ff95;

  font-size: 14px;
}

.chat-messages {
  display: flex;

  flex-direction: column;

  gap: 20px;

  margin-bottom: 30px;
  height: 320px;
  overflow-y: auto;

  padding-right: 10px;
}
.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);

  border-radius: 20px;
}
.message {
  max-width: 80%;

  padding: 16px 20px;

  border-radius: 20px;

  line-height: 1.6;

  font-size: 15px;
}

.message.received {
  background: rgba(255, 255, 255, 0.08);

  align-self: flex-start;
}

.message.sent {
  background: linear-gradient(135deg, var(--primary), var(--secondary));

  align-self: flex-end;
}

.chat-input {
  display: flex;

  gap: 10px;
}

.chat-input input {
  flex: 1;

  height: 58px;

  border: none;

  outline: none;

  border-radius: 50px;

  padding: 0 20px;

  background: rgba(255, 255, 255, 0.08);

  color: white;
}

.chat-input button {
  width: 58px;
  height: 58px;

  border: none;

  border-radius: 50%;

  cursor: pointer;

  color: white;

  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials-section {
  position: relative;
}

.testimonials-header {
  max-width: 760px;

  margin: auto auto 70px;
}

.testimonials-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.testimonial-card {
  position: relative;

  padding: 40px;

  overflow: hidden;
}

.testimonial-top {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-bottom: 25px;
}

.testimonial-avatar {
  width: 65px;
  height: 65px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 24px;

  font-weight: 700;

  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.testimonial-top span {
  color: var(--light-text);

  font-size: 14px;
}

.testimonial-rating {
  margin-bottom: 20px;

  color: var(--accent-gold);

  font-size: 22px;

  letter-spacing: 4px;
}

.testimonial-text {
  color: var(--light-text);

  line-height: 1.9;
}
