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

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;
}

.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: 56%;
  right: 444px;
  left: auto;
  transform: translateY(-50%);
  width: 559px;
  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: 26%;
  left: 80px;
  transform: translateY(-50%);
  width: 500px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  color: white;
  font-size: 19px;
  letter-spacing: 0.2px;
  line-height: 1.6;
  z-index: 2;
}

.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%;
  min-height: 1437px;
  margin-top: 120.4px;
  background-color: white;
  padding: 100px 0;
}

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

.final-title {
  font-family: 'Inter', sans-serif;
  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 {
  width: 916.84px;
  /* height: 1135px; */
  object-fit: cover;
}

/* 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: 'Inter', sans-serif;
  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 {
  position: absolute;
  right: -80px;
  top: 88px;
  width: 728.72px;
  height: 475.33px;
}

.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%;
  min-height: 1618px;
  background: linear-gradient(0deg, rgba(78, 148, 159, 0.2) 0%, rgba(78, 148, 159, 0) 20%);
  padding: 160px 0 0;
  position: relative;
}

.schedules-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  padding: 0 120px;
}

.schedules-header {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 80px;
}

.schedules-title {
  font-family: 'Inter', sans-serif;
  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;
  margin-bottom: 60px;
}

.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;
}

.mac-studio-mockup {
  width: 1210px;
  height: 907px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.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%;
  min-height: 1714px;
  background: #000000;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.profit-loss-container {
  max-width: 1446px;
  margin: 0 auto;
  position: relative;
  height: 1714px;
}

.profit-loss-image {
  position: absolute;
  top: 0;
  left: -7.5px;
  width: 1440px;
  height: 900px;
  z-index: 1;
}

.laptop-mockup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
}

.profit-loss-content {
  position: absolute;
  left: 192.81px;
  top: 1027.5px;
  width: 581px;
  display: flex;
  flex-direction: column;
  gap: 81px;
  z-index: 2;
}

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

.profit-loss-title {
  font-family: 'Inter', sans-serif;
  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 {
  width: 581px;
}

.profit-loss-description p {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  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;
}
