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

@font-face {
  font-family: "Neue Kaine";
  src: url("../fonts/neue-kaine-variable.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}


:root {
  --font-body: "Neue Kaine", "Neue Kaine", sans-serif;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    sans-serif;
  background-color: white;
  color: #1d1d1f;
  overflow-x: hidden;
}

.container {
  width: 100%;
  /* min-width: 1440px; */
  background-color: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.header {
  position: relative;
  height: 945px;
  width: 100%;
}

.header-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(20, 26, 90) 0%,
    rgb(40, 51, 125) 35%,
    rgb(100, 115, 200) 60%,
    rgb(255, 255, 255) 100%
  );
}

.nav {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.nav-logo-btn {
  width: 74px;
  height: auto;
  padding: 12px 24px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 37px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background-color 0.2s;
}

.nav-logo-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.logo {
  width: 29.83px;
  height: 31px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 37px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-item {
  padding: 10px 20px;
  border-radius: 25px;
  background-color: transparent;
  color: white;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-item.active {
  background-color: #de51c3;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(222, 81, 195, 0.4);
}

.nav-item.active:hover {
  background-color: #d046b6;
}

.hero {
  position: absolute;
  top: 173px;
  left: 50%;
  transform: translateX(-50%);
  width: 1017px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  position: relative;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgb(142, 110, 251) 0%,
    rgb(217, 83, 226) 50%,
    rgb(244, 72, 74) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 80px;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-image {
  position: relative;
  top: -131px;
  left: auto;
  transform: none;
  width: 1015px;
  height: 850px;
}

.about-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 94%;
  margin: 162px auto 0;
}

.section-title {
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  font-family: var(--font-body);
}

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

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

.about-section .section-title {
  text-align: left;
  margin-bottom: 10px;
}

.about-card {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(180deg, #535d8d 0%, #9eaadd 100%);
  position: relative;
  height: 676px;
  padding: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.phone-mockup {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 470px;
  height: 712px;
}

.phone-hand {
  position: absolute;
  top: 29px;
  left: 0;
  width: 559px;
  height: 651px;
  object-fit: cover;
}

.phone-frame {
  position: absolute;
  top: 40px;
  left: 149px;
}

.phone-frame::before {
  display: none;
}

.phone-screen {
  position: relative;
  top: 3px;
  left: 1px;
  width: 258px;
  height: 559px;
  background-color: white;
  border-radius: 39px;
  overflow: hidden;
  z-index: 1;
}

.phone-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 258px;
  height: 559px;
}

.phone-status {
  position: absolute;
  top: 13px;
  left: 111px;
  width: 79px;
  height: 21px;
  z-index: 2;
}

.about-text {
  position: absolute;
  top: 22%;
  left: 40px;
  transform: translateY(-50%);
  width: 400px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: white;
  font-size: 18px;
  letter-spacing: -0.41px;
  line-height: 31px;
  z-index: 2;
  text-wrap-style: balance;
}

.benefits-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
  padding: 0;
  margin: 120px auto 0;
  position: relative;
}

.benefits-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  width: 100%;
  max-width: 1200px;
}

.benefits-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding: 0px 0px 20px;
  gap: 20px;
  width: 100%;
  height: 518px;
  margin: 0 auto;
}

.benefits-column {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.benefits-column:last-child {
  width: 463px;
}

.benefit-card {
  width: 100%;
  background-color: #f5f5f7;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  height: 214px;
  justify-content: flex-start;
  box-shadow: none;
}

.benefit-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.benefit-icon-wrapper img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: none;
}

.benefit-icon-wrapper.blue,
.benefit-icon-wrapper.purple,
.benefit-icon-wrapper.light-blue {
  background-color: transparent;
}

.benefit-text {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #1d1d1f;
  font-size: 20.3px;
  line-height: 33px;
  margin-top: 0;
}

.benefits-phone-wrapper {
  position: relative;
  z-index: 2;
  margin: 0;
  width: 100%;
  max-width: 386.67px;
  height: auto;
  min-height: 498px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-phone {
  width: 386.67px;
  height: 498px;
  object-fit: contain;
}

.final-section {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  width: 100%;
  height: 150vh;
  background: #ffffff;
  background: linear-gradient(
    183deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(201, 222, 226, 1) 100%
  );
  margin-top: 80px;
}

.final-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.final-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 64px;
  line-height: 1.2;
  text-align: center;
  color: #1d1d1f;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    rgb(217, 83, 226) 0%,
    rgb(244, 72, 74) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.final-image__container {
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
  height: 100%;
}
.final-image {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Features Grid Section */
.features-grid-section {
  width: 100%;
  background: #f5f5f7;
  padding: 80px 0 120px;
  position: relative;
}

.features-grid-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 120px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
  max-width: 520px;
}

.feature-card-white {
  width: 100%;
  height: 520px;
  background: #ffffff;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ipad-mockup {
  position: relative;
  width: 578.57px;
  height: 455px;
  margin-left: -45px;
  margin-top: 32px;
}

.ipad-screen {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ipad-mockup-large {
  position: relative;
  width: 767px;
  height: 575px;
  margin-top: 25px;
}

.ipad-screen-large {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 32px;
  gap: 12px;
  width: 100%;
}

.feature-title-blue {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #708dfa;
  margin: 0;
}

.feature-description {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 33px;
  color: #1d1d1f;
  margin: 0;
  max-width: 358px;
}

.features-nav {
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  gap: 18px;
}

.nav-arrow {
  width: 36px;
  height: 36px;
  background: rgba(210, 210, 215, 0.64);
  border-radius: 36px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: rgba(0, 0, 0, 0.56);
}

.nav-arrow:hover {
  background: rgba(210, 210, 215, 0.9);
  opacity: 1;
}

.nav-arrow-left {
  opacity: 0.42;
}

/* Smart Clinic Management Section */
.clinic-section {
  width: 100%;
  background: #f5f5f7;
  padding: 80px 0;
  position: relative;
}

.clinic-container {
  max-width: 1247px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 88px 60px;
  position: relative;
  min-height: 651px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clinic-text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 535px;
  position: relative;
  z-index: 2;
}

.clinic-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 50px;
  line-height: 70px;
  color: #1d1d1f;
  margin: 0;
}

.clinic-description {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #797b85;
  margin: 0;
}

.clinic-devices {
  width: 500px;
  height: 500px;
}
.clinic-devices-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.macbook-mockup {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.macbook-screen {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.iphone-mockup {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 179.18px;
  height: 368.91px;
  filter: drop-shadow(0px -3.83516px 16.8157px rgba(0, 0, 0, 0.1))
    drop-shadow(0px 24.191px 36.8765px rgba(0, 0, 0, 0.15))
    drop-shadow(0px 10.9154px 10.9154px rgba(0, 0, 0, 0.25));
  z-index: 3;
}

.iphone-screen {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Smarter Schedules Section */
.schedules-section {
  width: 100%;
  padding: 160px 0 0;
  position: relative;
}

.schedules-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}
.schedules-content__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 10%;
  gap: 50px;
}

.schedules-header {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.schedules-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 71.1px;
  line-height: 84px;
  letter-spacing: -1.2px;
  color: #1d1d1f;
  margin: 0;
}

.text-teal {
  color: #4e949f;
}

.schedules-content {
  display: flex;
  flex-direction: column;
  gap: 17px;
  max-width: 714px;
}

.schedules-description {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18.9px;
  line-height: 29px;
  letter-spacing: 0.231px;
  color: #6e6e73;
  margin: 0;
}

.scheaules-image__container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(201, 222, 226, 0.8) 100%
  );
  padding-bottom: 80px;
  padding-inline: 10%;
}

.mac-studio-mockup {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 20px;
  overflow: hidden;
}

.mac-studio-screen {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.schedules-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 285px;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 60%);
  border-radius: 0 0 18px 18px;
  pointer-events: none;
}

/* Benefits Subtitle */
.benefits-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: #6e6e73;
  text-align: center;
  margin: 0;
}

/* Profit & Loss Section */
.profit-loss-section {
  width: 100%;
  background: #000000;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.profit-loss-container {
  position: relative;
}

.profit-loss-image {
  width: 100%;
}

.laptop-mockup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
}
.profit-loss-content__container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 80px;
}
.profit-loss-content {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  display: flex;
  flex-direction: column;
  gap: 81px;
  z-index: 2;
  max-width: 1000px;
  background: #000000;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 70%,
    rgba(12, 12, 39, 1) 100%
  );
  padding: 6%;
  border-radius: 20px;
}

.profit-loss-header {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.profit-loss-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 71.1px;
  line-height: 84px;
  letter-spacing: -1.2px;
  color: #f5f5f7;
  margin: 0;
}

.text-purple {
  color: #eda4ff;
}

.profit-loss-description {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profit-loss-description p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18.9px;
  line-height: 29px;
  letter-spacing: 0.231px;
  color: #86868b;
  margin: 0;
}

.profit-loss-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 90px;
  width: 1245px;
  height: 264px;
  background: linear-gradient(0deg, #0c0c27 0%, rgba(12, 12, 39, 0) 60%);
  border-radius: 0 0 18px 18px;
  pointer-events: none;
  z-index: 3;
}

/* Slider Section */
.slider-section {
  width: 100%;
  padding: 80px 0 40px 0;
  background: #f5f5f7;
  overflow: hidden;
  position: relative;
}

.slider-container {
  max-width: 100%; /* Allow full width for right bleed */
  margin: 0 auto;
  /* Left aligned with page content (120px), Right side open for peeking */
  padding: 0 0 0 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 30px;
  padding-right: 120px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-card {
  min-width: 440px;
  background: transparent; /* Transparent card */
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.slider-card:hover {
  transform: translateY(-5px);
}

.card-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Shadow moved to image wrapper */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px;
}

.card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  color: #708dfa;
  margin: 0;
}

.card-desc {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: #1d1d1f;
  margin: 0;
}

/* Navigation */
.slider-navigation {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 10px;
  padding-right: 70px;
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-btn:hover {
  background: #f5f5f7;
  transform: scale(1.05);
}

.nav-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.nav-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-btn.prev img {
  transform: rotate(180deg);
}
